我们在 HTML 中如何指定表头单元格是列、行或列或行组的表头?


使用 scope 属性在 HTML 中实现表头单元格是列、行或列或行组的表头 -

举例

实时演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         table, th, td {
            border: 1px solid black;
         }
      </style>
   </head>
   
   <body>
      <h2>Cricketers</h2>

      <table style = "width:100%">
         <caption>Indian Cricketers</caption>
         <th></th>
         <th scope = "col">Name</th>
         <tr>
            <td>1</td>
            <td>Sachin Tendulkar</td>
         </tr>
         <tr>
            <td>2</td>
            <td>Virat Kohli</td>
         </tr>
      </table>
   </body>
   
</html>

更新于: 30-Jul-2019

78 次浏览

开始你的职业

通过完成课程获得认证

开始吧
广告