设置要跨越HTML的列数

使用 span属性可以设置要在HTML中扩展的列数。您可以尝试运行以下代码来实现span属性-

示例

<!DOCTYPE html>
<html>
   <head>
      <style>
         table, th, td {
            border: 1px solid black;
         }
      </style>
   </head>
   <body>
      <table>
         <colgroup>
            <col span = "1" style = "background-color:grey">
         </colgroup>
         <tr>
            <th>S.NO</th>
            <th>Name</th>
         </tr>
         <tr>
            <td>1</td>
            <td>Amit</td>
         </tr>
      </table>
   </body>
</html>