?? 10-27.html
字號:
<html>
<head>
<title>position屬性</title>
<style type="text/css">
<!--
body{
margin:10px;
font-family:Arial;
font-size:13px;
}
#father{
background-color:#a0c8ff;
border:1px dashed #000000;
width:100%; height:100%;
padding:5px;
}
#block1{
background-color:#fff0ac;
border:1px dashed #000000;
padding:10px;
position:relative; /* relative相對定位 */
left:15px; /* 子塊1的左邊框距離它原來的位置15px */
top:30px; /* 子塊1的左邊框距離它原來的位置30px */
}
#block2{
background-color:#ffc24c;
border:1px dashed #000000;
padding:10px;
position:relative; /* relative相對定位 */
left:10px; /* 子塊2的左邊框距離它原來的位置10px */
top:20px; /* 子塊2的上邊框距離它原來的位置15px */
}
-->
</style>
</head>
<body>
<div id="father">
<div id="block1">relative</div>
<div id="block2">block2</div>
</div>
</body>
</html>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -