标签中的属性

1、colspan:表示横跨几列的表格

<table border="1">
  <tr>
    <th>Monthth>
    <th>Savingsth>
  tr>
  <tr>
    <td colspan="2">Januarytd>
  tr>
  <tr>
    <td colspan="2">Februarytd>
  tr>
table>

2、nowrap:表示禁止单元格中的文字自定换行

<tr>
<td nowrap="nowrap">1td>
tr>

但使用时要注意的是,td元素中nowrap属性的行为与td元素的width属性有关。如果未设置td宽度,则nowrap属性起作用的,如果设置了td宽度,则nowrap属性不起作用。

你可能感兴趣的:(标签使用)