实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
h2
6
{
7
position:absolute;
8
left:100px;
9
top:150px;
10
}
11
</style>
12
</head>
13
14
<body>
15
<h2>This is a heading with an absolute position</h2>
16
<p>With absolute positioning, an element can be placed anywhere on a page. The heading below is placed 100px from the left of the page and 150px from the top of the page.</p>
17
</body>
18
19
</html>
20