雙飛翼式佈局

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>雙飛翼佈局</title>
<style>
#main{
float: left;
width: 100%;
}
#main-content{
margin: 0 200px;
height: 500px;
background-color: red;
text-align: center;
}
.left{
float: left;
width: 200px;
height: 500px;
margin-left: -100%;
background-color: blue;
text-align: center;
}
.right{
float: left;
width: 200px;
height: 500px;
margin-left: -200px;
background-color: yellow;
text-align: center;
}
</style>
</head>
<body>
<div id="main" class="column">
<div id="main-content">#main</div>
</div>
<div class="left">left</div>
<div class="right">right</div>
</body>
</html>html

相關文章
相關標籤/搜索