CSS定位之绝对定位
程序员文章站
2022-04-24 20:46:09
...
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>绝对定位01</title>
<style type="text/css">
.box1{
width: 100px;
height: 100px;
background-color: red;
}
.box2{
width: 100px;
height: 100px;
background-color: yellow;
/*
* 当position属性设置为absolute时开启元素的绝对定位
* 1、开启绝对定位会使元素脱离文档流
* 2、开启绝对定位时,如果不设置偏移量则元素位置没有变化
* 3、绝对定位是相对于离他最近的开启了定位的元素的祖先元素进行定位的(一般来说,开启子元素的决定定位,都会开启祖先元素的定位)
* 如果所有的祖先元素都没有开启定位,则相对于浏览器窗口定位的
* 4、绝对定位会使元素提升一个层级
* 5、绝对定位会改变元素的性质,
* 内联 元素变成块元素
* 块元素的宽度和高度默认都会被内容撑开
*/
position: absolute;
left: 0px;
top: 0px;
}
.box3{
width: 200px;
height: 200px;
background-color: yellowgreen;
}
.box4{
height: 200px;
width: 200px;
background-color: orange;
position: relative;
}
</style>
</head>
<body>
<div class="box1"></div>
<div class="box4">
<div class="box2"></div>
</div>
<div class="box3"></div>
</body>
</html>
图片: