我想创建一个可以延伸到整个可用空间的响应式DIV。在它内部,我想要一些内部DIV也可以伸展。
足够简单,但还有更多:
我尝试过很多东西,但实际上并没有像我想的那样工作。提前感谢任何提示。
答案 0 :(得分:3)
请检查:http://jsfiddle.net/g4dGz/777/
初始示例有2列,为了检查您的请求是否已满足,我添加了第3列。
我可以创建的地方:
<div id="wrapper">
<div id="one">one one one one one one one one one one one one one one one one one one one one one</div>
<div id="two">two two two two two two</div>
<div id="three">3</div>
</div>
使用CSS:
#wrapper {
display: table;
table-layout: fixed;
width:90%;
height:100px;
background-color:Gray;
}
#wrapper div {
display: table-cell;
height:100px;
}
答案 1 :(得分:0)