有HTML
代碼保證金/填充/邊框(?)問題與HTML表格
<table cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td>
<img src="...">
</td>
</tr>
</tbody>
</table>
與CSS
風格
* {
border: none;
margin: 0;
padding: 0;
}
table {
position: absolute;
left: 50%;
top: 50%;
width: 110px;
height: 92px;
margin-left: -55px;
margin-top: -46px;
}
img {
width: 110px;
height: 92px;
}
訪問在this fiddle,
我希望有表格內容中沒有邊距,沒有填充和邊框。但是桌子高度與圖像高度不一樣。 td
元素中有一些額外的像素。
這裏有什麼問題?它是風格還是html代碼?
[相關問題](http://stackoverflow.com/questions/339923/how-to-set-cellpadding-and-cellspacing-in-css/3209434)。但是,如果您只是將表格用作圖片的包裝,則應該使用不同的元素,例如'
@Blazemonger - 不是非常相關的問題...和'
'