首页 > 代码库 > position
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>
<!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>
absolute:蓝色
relative:黑色
position
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。