画像ギャラリーを作成していますが、問題が発生しました。画像ラベルがすべて同じ長さの場合、それらは完全に整列しますが、ラベルが1行より長い場合、下に空白を作成するのではなく、画像を押し上げます。どうすればこれを修正できますか?
画像をすべて1行に揃え、テキストをそこから下に揃えたいと思います。
これをjsfiddleに入れてみましたが、なんらかの理由で動作させることができません...これを作成するHTMLは次のとおりです。
<div class="thumbrow">
<div style="min-width:400px;" class="thumbrow">
<div style="width:100px;" class="thumbs">
<div style="width:100px;" class="imgbox">
<a target="_blank" title="Hydrangeas" rel="lightbox[test]" href="http://jacobraccuia.com/test/wp-content/uploads/gallery/test/Hydrangeas.jpg">
<img width="100" height="75" src="http://jacobraccuia.com/test/wp-content/uploads/gallery/test/thumbs/Hydrangeas.jpg">
</a>
</div>
<p>Hydrangeas</p>
</div>
<div style="width:100px;" class="thumbs">
<div style="width:100px;" class="imgbox">
<a target="_blank" title="Chrysanthemum" rel="lightbox[test]" href="http://jacobraccuia.com/test/wp-content/uploads/gallery/test/Chrysanthemum.jpg">
<img width="100" height="75" src="http://jacobraccuia.com/test/wp-content/uploads/gallery/test/thumbs/Chrysanthemum.jpg">
</a>
</div>
<p>Chrysanthemum</p>
</div>
<div style="width:100px;" class="thumbs">
<div style="width:100px;" class="imgbox">
<a target="_blank" title="Lighthouse" rel="lightbox[test]" href="http://jacobraccuia.com/test/wp-content/uploads/gallery/test/Lighthouse.jpg">
<img width="100" height="75" src="http://jacobraccuia.com/test/wp-content/uploads/gallery/test/thumbs/Lighthouse.jpg">
</a>
</div>
<p>Lighthouse</p>
</div>
</div>
</div>
とCSS
.thumbgal .thumbs {
float: left;
margin: 0 5px;
}
.imgbox {
position: relative;
text-align: center;
}
.thumbrow {
float: left;
overflow: hidden;
}
.thumbs p {
font-size: 12px;
line-height: 16px;
word-wrap: break-word;
}
助けてください:D