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

วิธีแสดงเนื้อหาของตารางใน HTML


ใช้แท็ก ใน HTML เพื่อแสดงเนื้อหาของตาราง แท็ก HTML ใช้เพื่อเพิ่มเนื้อหาลงในตาราง แท็ก tbody ใช้ร่วมกับแท็ก thead และแท็ก tfoot ในการกำหนดแต่ละส่วนของตาราง (ส่วนหัว ส่วนท้าย เนื้อหา)

ต่อไปนี้เป็นแอตทริบิวต์ของแท็ก −

แอตทริบิวต์
ค่า
คำอธิบาย
align
ขวา
ซ้าย
ศูนย์
ให้เหตุผล
char
เลิกใช้งานแล้ว - การจัดตำแหน่งภาพ
ถ่าน
อักขระ
เลิกใช้งานแล้ว − ระบุอักขระที่จะจัดแนวข้อความ ใช้เมื่อ align ="char"
charoff
พิกเซลหรือ %
เลิกใช้งานแล้ว − ระบุออฟเซ็ตการจัดตำแหน่ง (เป็นพิกเซลหรือค่าเปอร์เซ็นต์) กับอักขระตัวแรกตามที่ระบุด้วยแอตทริบิวต์ถ่าน ใช้เมื่อ align ="char"
valign
top
กลาง
ล่าง
พื้นฐาน
เลิกใช้งานแล้ว - การจัดตำแหน่งแนวตั้ง

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อแสดงเนื้อหาของตารางใน HTML −

<!DOCTYPE html>
<html>
   <head>
      <title>HTML tbody Tag</title>
   </head>
   <body>
      <table style = "width:100%" border = "1">
         <thead>
            <tr>
               <td colspan = "4">This is the head of the table</td>
            </tr>
         </thead>
         <tfoot>
            <tr>
               <td colspan = "4">This is the foot of the table</td>
            </tr>
         </tfoot>
         <tbody>
            <tr>
               <td>Cell 1</td>
               <td>Cell 2</td>
               <td>Cell 3</td>
               <td>Cell 4</td>
            </tr>
            <tr>
               ...more rows here containing four cells...
            </tr>
         </tbody>
         <tbody>
            <tr>
               <td>Cell 1</td>
               <td>Cell 2</td>
               <td>Cell 3</td>
               <td>Cell 4</td>
            </tr>
            <tr>
               ...more rows here containing four cells...
            </tr>
         </tbody>
      </table>
   </body>
</html>