我創建不具有餘量,填充物或邊界skinny
CSS類:如何將此表格佈局更改爲CSS佈局?
.skinny
{
margin:0 0 0 0;
padding:0 0 0 0;
border:0 0 0 0;
}
我它施加到行含有還具有施加到它的skinny
類的圖像:
<td width="33%" align="center" class="skinny">
<table width="400px" height="180px" class="skinny">
<tr class="skinny">
<td class="skinny" width="60px" height="100px"><a class="skinny" href="/"><img class="skinny" width="60px" height="100px" id="snapshot" src="/images/snapshot.png"></a></td>
<td class="skinny" width="120px" height="100px"><a class="skinny" href="/"><h1 class="skinny">Product</h1></a></td>
</tr>
</table>
</td>
我試圖讓圖像儘可能靠近<h1>
文本顯示在下一個單元格中,以便它們從左到右依次向上推。
但是,無論我應用skinny
類的元素有多少,似乎都會在每個表格單元格周圍出現「填充」,從而在圖像和文本之間創建一個空格。
我需要做什麼才能使這個CSS佈局將圖像直接放在文本的左側,而且兩者之間沒有空格?
我嘗試這樣做:
<td width="33%" align="center" class="skinny">
<div class="skinny" width="60px" height="100px"><a class="skinny" href="/"><img class="skinny" width="60px" height="100px" id="snapshot" src="/images/snapshot.png"></a></div>
<div class="skinny" width="120px" height="100px"><a class="skinny" href="/"><h1 class="skinny">Product</h1></a></div>
</td>
但是卻讓上的文字頂部的形象。
難道你不需要寫`0px`而不是`0`嗎? – thejh 2010-11-25 18:06:19
@thejh:不。零是零。 `0px`與`0em`或`0cm`相同,所以你可以(可以說應該)只寫'0`。 – 2010-11-25 18:14:16