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

สร้างคำบรรยายสำหรับตารางใน HTML?


ใช้แท็ก เพื่อเพิ่มคำอธิบายภาพลงในตาราง คุณสามารถลองเรียกใช้รหัสต่อไปนี้เพื่อรวมคำอธิบายตารางใน HTML -

ตัวอย่าง

เราได้เพิ่มคำอธิบายตาราง “Indian Cricketers” −

<!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>