【发布时间】:2011-06-26 13:03:36
【问题描述】:
我正在处理图片库,但在对齐图片下方的文本时遇到了一些问题。每当文本填充超过一行时,图像就会向上移动,这是我不想要的。这是描述问题的屏幕截图:
我已经剪掉了图像,但你可以看到框架,所以问题应该很清楚。这是我的代码:
<table style="padding:10px; width:500px;">
<tr>
<td style="padding-right:10px;">
<div style="width:150px; margin-left:0px;" class="photo_frame">
<a href="album.php?id=1" title=""><img width="150px" src=
"images/photos/thumb_6512bd43d9caa6e02c990b0a82652dca.jpg" alt=
"" /></a>
</div>
<p class="photo_total" style="margin-left:2px;"><a class=
"album_title" href="album.php?id=1">test</a><br />
22 photos.</p>
</td>
<td style="padding-right:10px;">
<div style="width:150px; margin-left:0px;" class="photo_frame">
<a href="album.php?id=2" title=""><img width="150px" src=
"images/photos/thumb_d82c8d1619ad8176d665453cfb2e55f0.jpg" alt=
"" /></a>
</div>
<p class="photo_total" style="margin-left:2px;"><a class=
"album_title" href="album.php?id=2">Here's an test album</a><br />
8 photos.</p>
</td>
<td style="padding-right:10px;">
<div style="width:150px; margin-left:0px;" class="photo_frame">
<a href="album.php?id=3" title=""><img width="150px" src=
"images/photos/thumb_fc490ca45c00b1249bbe3554a4fdf6fb.jpg" alt=
"" /></a>
</div>
<p class="photo_total" style="margin-left:2px;"><a class=
"album_title" href="album.php?id=3">AzaraT @ Static
Underground</a><br />
3 photos.</p>
</td>
</tr>
</table>
CSS:
.album_title {
font-weight:bold;
font-size:10px;
}
.photo_total {
margin-top:5px;
font-size:10px;
color:#969696;
}
有什么提示吗? 谢谢:D
【问题讨论】:
-
图像应该对齐,然后应该在图像下方添加另一行。现在,三行文本的三分之二图像比其他两行高。