
具有以下位置的元素: 绝对位于相对于屏幕左上角的指定坐标处。
您可以使用两个值顶部和左侧 em> 与 position 属性一起将 HTML 元素移动到 HTML 文档中的任意位置。
- 向左移动 - 使用负值 > 向左。
- 向右移动 - 对向左使用正值。
- 向上移动 - 对顶部使用负值.
- 向下移动 - 对顶部使用正值。
示例
您可以尝试运行以下代码来实现绝对定位 -<html>
<head>
</head>
<body>
<div style = "position:absolute; left:80px; top:20px; background-color:yellow;">
This div has absolute positioning.
</div>
</body>
</html>









