我的目标是<div>
并排显示两个 s,两个 s 的内容<div>
在顶部对齐。我不希望第二个中的长文本<div>
包裹在第一个下方。
最后,我不想设置第二个的宽度,<div>
因为我需要标记以不同的宽度工作。
示例标记位于http://jsfiddle.net/rhEyM/下方。
CSS
.left-div {
float: left;
width: 100px;
height: 20px;
margin-right: 8px;
background-color: linen;
}
.right-div {
float: left;
margin-left: 108px;
background-color: skyblue;
}
HTML
<div class="left-div">
</div>
<div class="right-div">
My requirements are <b>[A]</b> Content in the two divs should line
up at the top, <b>[B]</b> Long text in right-div should not wrap
underneath left-div, and <b>[C]</b> I do not want to specify a
width of right-div. I don't want to set the width of right-div
because this markup needs to work within different widths.
</div>
</p>