10/09/23 15:55:51
<table>に代わり、CSSでサムネイル画像をタイル表示させてみました。
下記は2x2に表示する方法ですがこのような感じであっていますか?
<div style="width: 100%;">
<div style="float: left; width: 100px">
<img src="image_1.jpg" width="90px" height="107px">
</div>
<div style="float: left; width: 100px">
<img src="image_2.jpg" width="90px" height="107px">
</div>
<br clear="all">
<div style="float: left; width: 100px">
<img src="image_3.jpg" width="90px" height="107px">
</div>
<div style="float: left; width: 100px">
<img src="image_4.jpg" width="90px" height="107px">
</div>
<br clear="all">
</div>