3x3ブロックの画像があります。3x3ブロックの画像をCSSで修正する方法
イメージの幅を400ピクセル、高さを300ピクセルにします。
また、画像を画面の端から端まで伸ばし、画像間にスペースがないようにします。
This is what it looks like at the moment
これが私の現在のCSSとHTMLである:
.clear {
clear: both;
}
#grid {
width: 100%;
}
.grid-element {
width: 33.3333%;
height: 200px;
float: left;
}
<div id="grid">
<div class="grid-element">
<img src="http://static.caloriecount.about.com/images/medium/colby-cheese-157898.jpg" />
</div>
<div class="grid-element">
<img src="http://static.caloriecount.about.com/images/medium/colby-cheese-157898.jpg" />
</div>
<div class="grid-element">
<img src="http://static.caloriecount.about.com/images/medium/colby-cheese-157898.jpg" />
</div>
<div class="grid-element">
<img src="http://static.caloriecount.about.com/images/medium/colby-cheese-157898.jpg" />
</div>
<div class="grid-element">
<img src="http://static.caloriecount.about.com/images/medium/colby-cheese-157898.jpg" />
</div>
<div class="grid-element">
<img src="http://static.caloriecount.about.com/images/medium/colby-cheese-157898.jpg" />
</div>
<div class="grid-element">
<img src="http://static.caloriecount.about.com/images/medium/colby-cheese-157898.jpg" />
</div>
<div class="grid-element">
<img src="http://static.caloriecount.about.com/images/medium/colby-cheese-157898.jpg" />
</div>
<div class="grid-element">
<img src="http://static.caloriecount.about.com/images/medium/colby-cheese-157898.jpg" />
</div>
</div>
<div class="clear">Example taken from <a href="https://gist.github.com/grandoch/1400971">grandoch</a>'s gist</div>
あなたはそれがあなたの画面の端にストレッチしたい場合は、#gridの幅は100%ではなく600PXであるべきであり、あなたの各列の幅は33.33パーセントでなければなりません。 –
私はこれらの変更を実装しており、それはほとんど違いがありません。私も新しい大きな画像を追加しました。 –
このリンクをチェック:-https://css-tricks.com/equidistant-objects-with-css/ –