html 表格内的间距
如何增加此表“第 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>
how can i increase the space in this table "Row 1, cell 1"?
<html>
<table border="1">
<tr>
<td>Row 1, cell 1</td>
<td>Row 1, cell 2</td>
</tr>
</table>
</html>
pls check here for the image:
http://img227.imageshack.us/img227/6166/htmln.png
is this correct:
<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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 cellpadding 或使用 css
编辑 您编辑的帖子是错误的......这样做:
You can either use cellpadding or using css
EDIT Your edited post is wrong....do this:
您可以向该特定单元格添加一个类,然后使用该类名来应用 css:
或者您可以使用特定的样式规则来应用特定样式:
尽管这将应用于第一个
td
每一行。You can add a class to that specific cell and then use that class-name to apply css:
Or you could use specific style-rules to apply a particular style:
Though this would apply to the first
td
of every row.详细阐述“空间”?如果这就是“空格”的意思,您可以向 td 添加填充
table td { padding:5px; 如果您
只是想让该单元格更大,请添加一个 calss
table td.my-cell { padding:5px; }
第 1 行,单元格 1
还是您的意思是
第 1 行, cell1
您可以增加单词之间的间距,如下所示:
table td { 字间距:20px; /* 调整 */ }
elaborate on "space"? you can add padding to the td if thats what you mean by "space"
table td { padding:5px; }
if you just want that cell bigger, add a calss
table td.my-cell { padding:5px; }
<td class="my-cell">Row 1, cell 1</td>
or do you mean
<td>
Row 1, cell1</td>
you can increase the space between words like this:
table td { word-spacing: 20px; /* adjust */ }