我該如何增加表格「第一行,單元格1」的空間?表格內部的html間距
<html>
<table border="1">
<tr>
<td>Row 1, cell 1</td>
<td>Row 1, cell 2</td>
</tr>
</table>
</html>
請查看這裏的形象: http://img227.imageshack.us/img227/6166/htmln.png
這是正確的:
<table border="1" td.my-cell { padding:100px; }>
<tr>
<td class="my-cell">Row 1, cell 1</td>
<td>Row 1, cell 2</td>
</tr>
</table>
你是什麼意思「增加空間」?你想讓第一個表格單元變寬嗎? – 2010-10-06 09:46:08
是的。對不起,不清楚 – tintincutes 2010-10-06 09:46:32