这是jsFiddle
#wrapper {
margin:1px;
height:auto;
width:auto;
float:left;
clear:both
}
#wrapperR {
margin:1px;
height:auto;
width:auto;
float:right;
clear:both;
}
在我的页面中看起来像这样
L
R
但我希望它看起来像 LR,我希望它及其所有内容保持在左侧,同时保持右侧并排。
我添加了 clear:both; 对于两个 div,我什至创建了一个 .clear{clear:both;} 并且我已经调整了宽度、填充和边距,但我仍然不能并排浮动它们。
我想知道我在看什么。
谢谢!