两列布局,三列布局
1. 用css、html编写一个两列布局的网页,右侧宽度为200px,左侧自动扩展。
<style>
.container {
height: 200px;
border: 1px solid #000;
}
.left {
float: left;
width: 200px;
height: 200px;
}
.right {
overflow: hidden;
background-color: skyblue;
height: 200px;
}
</style>
<body>
<div class="container">
<div class="left"></div>
<div class="right"></div>
</div>
</body>
效果图:
3. 用css、html编写一个三列布局的网页,左右两侧宽度为200px,中间自动扩展。
style>
.container {
height: 200px;
border: 1px solid #000;
}
.left {
float: left;
width: 200px;
height: 200px;
background-color: skyblue;
}
.main {
overflow: auto;
height: 200px;
background-color: slateblue;
}
.right {
float: right;
width: 200px;
height: 200px;
background-color: steelblue;
}
<body>
<div class="container">
<div class="left"></div>
<div class="right"></div>
<div class="main"></div>
</div>
效果图: