我认为我的头衔就是这么说的。
我需要一个双列css div结构。左栏,我要放置一张图片。图像的宽度可变,我希望右列占据容器的其余部分。我有这个,它并没有真正起作用,因为正确的列只占用了所需的空间。我希望正确的col占据包含图像的div的整个右侧。
非常感谢您的帮助。
<style>
.container {
height: auto;
overflow: hidden;
}
.right {
width: auto;
float: right;
background: #aafed6;
}
.left {
float: none; /* not needed, just for clarification */
background: #e8f6fe;
/* the next props are meant to keep this block independent from the other floated one */
width: auto;
overflow: hidden;
}
</style>
<div class="container">
<div class="right">
right content
</div>
<div class="left">
left content flexible width left content flexible width left content flexible width left content flexible width left content flexible width
</div>
</div>
尊重