2025年4月3日 星期四 乙巳(蛇)年 正月初四 设为首页 加入收藏
rss
您当前的位置:首页 > 计算机 > 编程开发 > Html+Div+Css(前端)

CSS绝对定位模拟固定定位(absolute模拟fixed)

时间:08-26来源:作者:点击数:23

初始包含块

  • <!DOCTYPE html>
  • <html>
  • <head>
  • <meta charset="UTF-8">
  • <title></title>
  • <style type="text/css">
  • *{
  • margin: 0;
  • padding: 0;
  • }
  • html{
  • height: 100%;
  • overflow: hidden;
  • }
  • body{
  • height: 100%;
  • overflow: hidden;
  • }
  • #wrap{
  • height: 100%;
  • border: 1px solid deeppink;
  • overflow: auto;
  • }
  • #pink{
  • position: absolute;
  • left: 0;
  • top: 0;
  • width: 200px;
  • height: 200px;
  • background: pink;
  • }
  • </style>
  • </head>
  • <body>
  • <!--初始包含块:是一个视窗大小的矩形!! 这里的id=wrap是初始包含块-->
  • <div id="wrap">
  • <div id="pink">
  • </div>
  • <div id="test" style="height: 3000px;">
  • </div>
  • </div>
  • </body>
  • </html>
方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门