0
我正在嘗試構建span8寬度和高度不等的模塊。有一個圖像將定義div的高度,以及位於圖像頂部的文字。我在試圖弄清楚在Bootstrap調整div時如何防止部分圖像被裁剪時遇到問題。Background Img Div(Twitter Bootstrap)
另外,我無法弄清楚如何放置文本框。我想要有兩個文本框 - 一個位於垂直0%,第二個垂直位於50%。
<div class="row">
<div class="span12 promo">
<div class="content">
<div class="row-fluid">
<div class="topText span24">
Text positioned on the top half
</div>
</div>
<div class="row-fluid">
<div class="botText span24">
Text positioned on the bottom half
</div>
</div>
</div>
</div>
</div>
.promo { height: 100%; }
.promo .content { width: 100%; height: 100%; background:url(http://www.placehold.it/470x188) no-repeat; }
.promo .content .row-fluid { height: 50px; }
對不起,哪個div設置爲'height:50%;'? – Jon
我也不會知道我的圖像的高度,因爲它們都是不同的大小。只有寬度是一致的。 – Jon