我想设计一个高度和宽度为1px的桌子。 这可能吗,因为我做不到? 任何建议将不胜感激。
修改
我做到了,实际上我需要在我的CSS样式中使用!important
,但是单元格之间的空间是存在的。我该如何删除它们?
<table width="100%" style="height:1px !important;">
<tr style="height:1px !important;">
<td style="background-color:red; width:1px;">
</td>
<td style="background-color:blue; width:1px;">
</td>
<td style="background-color:orange;">
</td>
<td style="background-color:red; width:1px;">
</td>
</tr>
</table>
答案 0 :(得分:1)
这是一个仅适用于HTML的答案,适用于各种浏览器和设置:
<body>
<table cellpadding=0 cellspacing=0>
<tr><td width=1 height=1></td></tr>
</table>
要设置像素的颜色,您可以使用bgcolor
元素上的td
属性。
我无法想象你的目的是什么,但这回答了被问到的问题。
答案 1 :(得分:0)