我正在尝试使单元格在表格中具有固定的(以 px 为单位)宽度。
这就是我现在所拥有的:
<table style="border: 1px solid black; width: 1128px; table-layout: fixed;">
<tbody>
<tr>
<td style="background: none repeat scroll 0 0 red; width: 4px;">Row 1 Col 1</td>
<td style="background: none repeat scroll 0 0 red; width: 4px;">Row 1 Col 2</td>
<td style="background: none repeat scroll 0 0 red; width: 4px;">Row 1 Col 3</td>
</tr>
</tbody>
</table>
但是,没有一个表格单元格是 4px 宽。我错过了什么?