表数据有边框和链接图像以及其下方的一些其他锚文本。
问题是链接之间有空间,我从这个here得到的解决方案只是使用vertical-align来消除锚之间的间隙(这有效)但在我的情况下它会在border-top之间产生间隙改为使用td边框和锚点图像。使用clear两者也不起作用。有什么想法吗?
<td style="font-size:14px;border:1px solid #848484;font-weight: bold;">
<a target="_BLANK" href=""><img style="border:none;" src="clothing.jpg" alt="Female Clothing"/></a>
<a target="_blank" href=""> » Sub Men</a>
</td>
答案 0 :(得分:1)
也许您需要设置:
<table cellspacing="0" cellpadding="0">
...
</table>
答案 1 :(得分:0)
我发现我必须使用垂直对齐和显示块来修复它。