我已经搜索了许多类似的问题,但没有一个解决方案有效。还应该注意的是,我正在使用 twitter bootstrap。我想要一堆 div 跨越它底部的父 div 的整个长度。我尝试将它们放在 text-align:center 的 div 中,然后在 gridPics 类中使用 float-left ,并使用 display: inline-block, text-align :left ,但似乎什么也没做。下面示例中的两个在完全相同的位置,我希望它们并排。这是我所拥有的:
HTML:
<div class="row-fluid">
<div class="span8 offset2 articleContent">
<!-- These are the divs to span across, when it works there would be more than two -->
<div class="gridPics"></div>
<div class="gridPics"></div>
<!-- They will also go over this image -->
<img id="sidePic" src="img/about/aboutHeader_Mid1.png" alt="about">
</div>
<div class="span2"></div>
</div>
CSS:
.gridPics{
position: absolute;
z-index: 1;
width: 10%;
height: 20%;
background: #0000b3;
bottom: 0;
float: left;
}
.articleContent{
position: relative;
box-shadow: 0 0 5px 5px #888;
}
#sidePic{
position: relative;
z-index: -1;
}
这是我这样做的地方,蓝色的 div 将是可以单击的图片(类似于缩略图)。我希望他们一路走来:
/ScreenShot2013-01-09at85450PM_zps550e8e4a.png[/IMG]