gpt4 book ai didi

表格内的html间距

转载 作者:行者123 更新时间:2023-12-01 22:44:40 24 4
gpt4 key购买 nike

如何增加此表“第 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>

最佳答案

您可以使用 cellpadding或者使用 CSS

.cellpadding {
padding-left: 5px;
padding-right: 5px;
}

<td class="cellpadding">Row 1, cell 1</td>

编辑 你编辑的帖子是错误的....这样做:

<table border="1">
<tr>
<td style="padding-left: 5px; padding-right: 5px;">Row 1, cell 1</td>
<td>Row 1, cell 2</td>
</tr>
</table>

关于表格内的html间距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3871237/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com