怎么给table 设置大小
时间: 2023-06-04 12:06:24 浏览: 302
您可以使用HTML中的style属性来设置表格的大小。例如,如果您想将表格宽度设置为600像素,可以像下面这样编写代码:
<table style="width:600px">
<tr>
<th>表头1</th>
<th>表头2</th>
</tr>
<tr>
<td>单元格1</td>
<td>单元格2</td>
</tr>
</table>
如果您想将表格高度设置为400像素,可以将height属性添加到style属性中,例如:
<table style="width:600px; height:400px">...</table>
阅读全文