CSS怎么实现内容不相同的左右两个div等高?
Posted web前端开发
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS怎么实现内容不相同的左右两个div等高?相关的知识,希望对你有一定的参考价值。
问题
方法一
<div id="#warp">
<div>
<br>
<br>
<br>
left
</div>
<div>right</div>
</div>
#wrap {
overflow: hidden;
width: 1000px;
margin: 0 auto;
}
#left,
#center {
margin-bottom: -10000px;
padding-bottom: 10000px;
}
#left {
float: left;
width: 250px;
background: #00ffff;
}
#center {
float: left;
width: 500px;
background: #ff0000;
}
方法二
.left,
.right {
padding: 10px;
display: table-cell;
border: 1px solid #f40;
}
方法三
.wrap {
display: -webkit-box;
}
.left,
.right {
padding: 10px;
border: 1px solid #f40;
}
以上是关于CSS怎么实现内容不相同的左右两个div等高?的主要内容,如果未能解决你的问题,请参考以下文章