私は行があり、その行には3つの記事があり、すべての記事に1つの写真が入っています 問題は行が表示されるときに発生します、 問題写真は同じ高さのサイズにすることはできませんこれは私のウェブサイトを悪く見せている。画像リンク------- https://i.stack.imgur.com/N5EVB.png高さの異なる画像を表示する方法
ノートすべての写真の高さは、ブートストラップ
を使用して、他の1
異なっている私のコード
'<div class='row'>
// product 1
<div class="col-sm-4 col-lg-4 col-md-4">
<div class="thumbnail">
<img src="/*Path here*/">
<div class="caption max">
<h2>/*subject*/</h2>
<h4>Selling by /*name*/</h2>
<p>/*main-information*/</p>
</div>
</div>
</div>
// product 2
<div class="col-sm-4 col-lg-4 col-md-4">
<div class="thumbnail">
<img src="/*Path here*/">
<div class="caption max">
<h2>/*subject*/</h2>
<h4>Selling by /*name*/</h2>
<p>/*main-information*/</p>
</div>
</div>
</div>
// Product 3
<div class="col-sm-4 col-lg-4 col-md-4">
<div class="thumbnail">
<img src="/*Path here*/">
<div class="caption max">
<h2>/*subject*/</h2>
<h4>Selling by /*name*/</h2>
<p>/*main-information*/</p>
</div>
</div>
</div>
</div> // closing row '
ありがとうございます。
CSS –
と画像の幅と高さを与える画像直接タグまたはCSS – Roljhon
に高さを設定私はすでになかったが、画像の高さは、互いに –