如何使用CSS自动调整div的宽度?
考虑以下示例:
HTML:
<div class="wrapper">
<div class="left">Some text here</div><div class="right">Hello Stack Overflow</div>
</div>
CSS:
.wrapper {
border: 1px solid black;
width: 400px;
}
.left {
border: 1px solid green;
display: inline-block;
}
.right {
border: 1px solid red;
display: inline-block;
float: right;
}
我想强制绿色的宽度div
尽可能大,根据红色的宽度。红色 div
的宽度可以根据 div
的内容而变化。因此,例如,如果红色 div
的宽度为 150px,则绿色 div 的宽度应为 250px。这应该永远是正确的:
green div width + red div width = 400px
我如何使用 CSS 来实现这一点?
没有 JavaScript,请...
Consider the following example:
HTML:
<div class="wrapper">
<div class="left">Some text here</div><div class="right">Hello Stack Overflow</div>
</div>
CSS:
.wrapper {
border: 1px solid black;
width: 400px;
}
.left {
border: 1px solid green;
display: inline-block;
}
.right {
border: 1px solid red;
display: inline-block;
float: right;
}
I would like to force the width of the green div
to be as big as possible, according to the width of the red one. The width of the red div
can vary according to div
's content. So, for example, if the width of the red div
is 150px, the width of the green one should be 250px. This should always be true:
green div width + red div width = 400px
How could I achieve this using CSS ?
No Javascript please...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如 Sandeep 之前所说,但是强制绿色 div 占用尽可能多的空间。
请注意,IE7 及以下版本不支持 divs-as-tables。
As sandeep said earlier, but force the green div to take up as much space as possible.
Note that divs-as-tables is not supported by IE7 and below.
使这就是你想要的 http://jsfiddle.net/sandeep/eGphW/
你可以使用 div 作为一张桌子。
make be that's you want http://jsfiddle.net/sandeep/eGphW/
you can use div as a table.