當我在表格單元格中放置圖像後跟文本時,文本的垂直對齊與相鄰單元格中的文本相比向下移動。我嘗試使用一個line-height
CSS屬性,但它似乎沒有影響。文本在表格單元格中的垂直定位
在以下示例中,我需要「123說明」與「單元格1」齊平。此外,默認情況下圖像和「123」之間有空格。我怎樣才能調整 - 也許是負利潤率?
<html>
<head>
<style type="text/css">
table { border-collapse: collapse; }
td { border: thin solid; width: 10em;}
/* .adjust-text { line-height: 1.3em; } */
</style>
</head>
<body>
<table>
<tbody>
<tr>
<td>cell one</td>
<td>
<img src="small-star.png" />
<span class="adjust-text">123 Description</span>
</td>
</tr>
</tbody>
</table>
</body>
</html>
沒有任何這些解決方案爲你工作羅伯特? – Andrew 2010-06-11 13:28:07