position

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<!-- position:relative; 相对定位 相对于自身位置移动的距离 -->
<div  style="width:200px;height:200px;background:black;position:relative;left:100px;top:100px;">
</div>
</body>
</html>

position

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<!-- 绝对定位
相对于具有POSITION属性父级元素移动
如果父级元素没有position属性相当于body移动 -->
<div style="width:600px;height:600px;background:red; position:absolute;">
<div style="width:200px;height:200px;background:blue;position:absolute;left:100px;top:100px;"></div>
</div> 
</body>
</html>

position

absolute:蓝色
relative:黑色

position

原创文章,作者:carmelaweatherly,如若转载,请注明出处:https://blog.ytso.com/237609.html

(0)
上一篇 2022年1月29日
下一篇 2022年1月29日

相关推荐

发表回复

登录后才能评论