overflow妙用代码
老师能不能把这节课的overflow妙用的完整代码贴出来?
老师能不能把这节课的overflow妙用的完整代码贴出来?
2015-08-09
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> .main-body{ height: 1000px; width: 80%; margin: 0 auto; background: #ccc; padding-left: calc(100vw - 100%); } .fixed-wrap{ height: 0; overflow: hidden; text-align: right; } .fixed-right{ position: fixed; margin:20px 0 0 20px; } </style> </head> <body> <div> <div> <img src="demo_images/fixed.jpg"> </div> </div> </body> </html>
试试这个
举报