两栏自适应布局,右侧div宽高不定
Posted Milk.╮
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了两栏自适应布局,右侧div宽高不定相关的知识,希望对你有一定的参考价值。
.main,.sitebar{
height: 300px;
font: bolder 20px/300px "微软雅黑";
color: black;
text-align: center;
}
.main{
width: 100%;
float: left;
}
.main .content{
margin-left: 200px;
background: red;
}
.sitebar{
width: 200px;
float: left;
margin-left: -100%;
background: green;
}
<div class="main">
<div class="content">hhhhhhhhhhhhh</div>
</div>
<div class="sitebar">
hehhehhe
</div>
以上是关于两栏自适应布局,右侧div宽高不定的主要内容,如果未能解决你的问题,请参考以下文章