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

การใช้คุณสมบัติเซลล์ว่าง CSS


คุณสมบัติเซลล์ว่างระบุว่าควรแสดงเส้นขอบหรือไม่หากเซลล์ว่างเปล่า เป็นการระบุว่าเซลล์ที่ไม่มีเนื้อหาควรมีเส้นขอบปรากฏขึ้นหรือไม่

ตัวอย่าง

คุณสมบัตินี้สามารถมีค่าหนึ่งในสามค่า แสดง ซ่อน หรือสืบทอด

<html>
   <head>
      <style>
         table.empty{
            width:400px;
            border-collapse:separate;
            empty-cells:hide;
         }
         td.empty{
            padding:5px;
            border-style:solid;
            border-width:1px;
            border-color:#999999;
         }
      </style>
   </head>
   <body>
      <table class = "empty">
         <tr>
            <th></th>
            <th>Title one</th>
            <th>Title two</th>
         </tr>
         <tr>
            <th>Row Title</th>
            <td class = "empty">R1T1</td>
            <td class = "empty">R1T2</td>
         </tr>
         <tr>
            <th>Row Title</th>
            <td class = "empty">R2T1</td>
            <td class = "empty"></td>
         </tr>
      </table>
   </body>
</html>