我不能在不破坏容器的情况下让两个内容区域并排浮动。我将第一个区域提示为 float:left 但是当我提示 float:right 到内容区域 2 时,我的容器不再工作。
该对象确实浮动,但容器消失了。
这是我的网站http://aasdsafasdf.weebly.com/(我还处于早期阶段)
#container {
width: 1100px;
margin: 0 auto;
background: #ffffff;
}
#content {
float: left;
height: auto;
width: 710px;
}
#content2 {
float: right;
height: auto;
width: 350px;
}