Bootstrap 3 RC2 を使用して CSS でこれら 3 つの画像の間にスペースを配置する最良の方法はどれですか#picture
?鬼ごっこ。インラインで画像のサイズを変更してほしいと思います。
ここに私のマークアップがあります:
<div class="container">
<div class="row">
<div class="col-lg-4">
<img src="http://placehold.it/350x250" id="picture" />
</div>
<div class="col-lg-4">
<img src="http://placehold.it/350x250" id="picture" />
</div>
<div class="col-lg-4">
<img src="http://placehold.it/350x250" id="picture" />
</div>
</div>
</div>
CSS:
.container {
max-width:1000px;
background-color:white;
}
body {
background-color:cyan
}
#picture {
width:auto;
/*margin-left:10px; */
/*margin-right:10px; */
}
.col-lg-4 {
margin-left:10px;
margin-right:10px;
}
より明確なビューについては、私のフィドルを確認してください。これを処理するためのより良い方法はありますか?