<div class="story-container">
<div class="story-box">
<h3>News Item #2</h3>
<h2>This is my second news item!!</h2>
</div>
<div class="story-box">
<h3>Technical Development</h3>
<h2>See Muppets on Your Band-Aid With New AR App</h2>
</div>
<div class="clear"></div>
</div>
我的 CSS 是:
.story-container {
background: none repeat scroll 0 0 blue;
margin: 0 auto;
width: 1000px;
}
.story-box {
float: left;
margin-right: 10px;
}
我希望story-box
's 在每个外部旁边,但目前他们不这样做。我怎样才能做到这一点?
编辑
我想story-box
和容器一样是 1000px。这样,它story-box
占据了容器的整个宽度,然后下一个在技术上超出了界限。