Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

กำหนดจำนวนคอลัมน์ที่จะขยายเป็น HTML


ใช้ช่วง คุณลักษณะเพื่อกำหนดจำนวนคอลัมน์ที่จะขยายใน 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>