布局一 两列自适应布局
Posted 鱼樱、、
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了布局一 两列自适应布局相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>两列自适应布局</title>
<style type="text/css">
.out{
width: 90%;
height: 500px;
margin: 0 auto;
background: yellow;
}
.left{
width: 20%;
background: blue;
float: left;
height: 500px;
}
.right{
width: 80%;
background: red;
float: left;
height: 500px;
}
</style>
</head>
<body>
<div class="out">
<div class="left"></div>
<div class="right"></div>
</div>
</body>
</html>
以上是关于布局一 两列自适应布局的主要内容,如果未能解决你的问题,请参考以下文章