ボディの背景が灰色のデザインがあり、コンテンツは 20px のパディングの白いコンテナー内にあります。
Bootstrap を使用して作成していますが、この 20px のパディングをコンテナーに追加すると、他のすべてのスパン要素が収まりません...
そのはず:
<div class="container"> <!-- this should be white background -->
<div class="row">
<div class="span4"></div> <!-- this element should be 20px margin left -->
<div class="span4"></div>
<div class="span4"></div> <!-- this element should be 20px margin right -->
</row>
</div>
この種のコンテナを Bootstrap で作成する方法はありますか?
ありがとう。