重点:
固定定位是常见用来写广告位,联系方式等的滚动浮动实现方法
实现:
position:fixed;
top:20px;
left:100px;
代码部分:
实例
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="X-UA-Compatible" content="ie=edge" /> <title>Document</title> <style> body{ height: 2000px; } .box{ height: 200px; width: 200px; background: yellow; position: fixed; top: 20px; left: 100px; } </style> </head> <body> <div class="box"> </div> </body> </html>
运行实例 »
点击 "运行实例" 按钮查看在线实例