iOS开发html+css学习之固定定位

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
.box1 {
width: 200px;
height: 200px;
background-color: red;
}
.box2 {
width: 200px;
height: 200px;
background-color: yellow;
/*
当元素的position属性设置fixed的时,则开启了元素的固定定位
固定定位也是一种绝对定位,它的大部分特点都和绝对定位一样
不同的是:
1. 固定定位永远都会相对于流浪器窗口进行定位
2. 固定定位会固定在流浪器窗口的某个位子,不会随滚动条滚动

                IE6不支持固定定位
             */

             position: fixed;

             left: 0px;
             top: 0px;
        }
        .box3 {
            width: 200px;
            height: 200px;
            background-color: yellowgreen;
        }

        
    </style>
</head>

<body style="height:5000px;">
<div class="box1"></div>
<div class="box4" style="width:300px; height:300px; background-color:green; position: relative;">
<div class="box2"></div>
</div>
<div class="box3"></div>
</body>
</html>

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容