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

เราจะรวมคำอธิบายตารางใน HTML ได้อย่างไร


ใช้แท็ก เพื่อสร้างคำบรรยายสำหรับตาราง คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อรวมคำอธิบายตารางใน 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>Name</th>
         <tr>
            <td>Sachin Tendulkar</td>
         </tr>
         <tr>
            <td>Virat Kohli</td>
         </tr>
      </table>
   </body>
</html>