我正在使用twitter bootstrap,并希望在容器内的一行中有4个“工作原理”部分。根据twitter bootstrap,在容器内,有12个跨度,所以这不应该是一个问题。
出于某种原因,当我创建4个div时,它会导致第4个div进入下一行。我的屏幕宽度大于它应该垂直堆叠的宽度,所以这不是问题。
有什么想法吗?
CSS HERE
.howitworks{
text-align: center;
margin-top: 30px;
}
.howitworks p{
margin-left:20%;
padding-bottom: 40px;}
.howitworks h3{
padding-top:25px;
}
#howitworksdetail{
border: thin solid #0d9e49;
border-bottom-width: 3px;
border-bottom: solid #0d9e49;
min-height: 220px;
margin-top: 60px;
}
HTML HERE
<div class = "container">
<div class = "howitworks">
<div class = 'span3', id= 'howitworksdetail'>
<h3 class = "text-center">header</h3>
<p class = "span2 text-center">stuff.</p>
</div>
<div class = 'span3', id= 'howitworksdetail'>
<h3 class = "text-center">header</h3>
<p class = "span2 text-center">stuff</p>
</div>
<div class = 'span3', id= 'howitworksdetail'>
<h3 class = "text-center">header</h3>
<p class = "span2 text-center">stuff</p>
</div>
<div class = 'span3', id= 'howitworksdetail'>
<h3 class = "text-center">header</h3>
<p class = "span2 text-center">stuff</p>
</div>
</div>
</div>
我试图消除边界,但也没有这样做。感谢
答案 0 :(得分:0)
您的代码中似乎缺少<div class="row">
。您会在Bootstrap Grid System页面上注意到它需要类row
才能创建包含这12列的行。
此外,您的span2
元素上有<p>
个班级,但我相信您只想将网格类应用于<div>
个元素。希望这有帮助!