如何增加此表“第 1 行,第 1 单元格”中的空间?
<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>