[1031]XOOPS佈景設計
<!DOCTYPE html>
<html lang="zh-TW">
<head>
<meta charset="utf-8">
<title>position 練習</title>
<style type="text/css">
#a {
width:100px;
height:100px;
border:1px solid #000;
background: yellow;
text-align:center;
line-height: 100px;
}
#b {
width:100px;
height:100px;
color:white;
border:1px solid #000;
background: blue;
text-align:center;
line-height: 100px;
position: relative;
top:-10px;
left:50px;
}
#c {
width:100px;
height:100px;
color:white;
border:1px solid #000;
background: green;
text-align:center;
line-height: 100px;
}
</style>
</head>
<body>
<div id="a">
aaaaa
</div>
<div id="b">
bbbbb
</div>
<div id="c">
cccccc
</div>
</body>
</html>