การใช้งาน DIV ในการแสดงผลเป็นบล๊อคๆในลักษณะของตาราง
.block {
clear: both;
width: 500px;
}
.block > div {
float: left;
width: 33.33%;
}
<div class=block>
<div>Cell 1</div>
<div>Cell 2</div>
<div>Cell 3</div>
<div>Cell 4</div>
<div>Cell 5</div>
<div>Cell 6</div>
</div>
ตัวอย่าง
Cell 1
Cell 2
Cell 3
Cell 4
Cell 5
Cell 6
อีกวิธีที่สามารถทำได้คือการกำหนดรูปแบบการแสดงผลในลักษณะของตาราง โดยการใช้คำสั่งของ CSS ในรูปแบบที่ตารางใช้
.table {
display: table;
}
.tr {
display: table-row;
}
.td {
display: table-cell
}
<div class=table>
<div class=tr>
<div class=td>Cell 1</div>
<div class=td>Cell 2</div>
<div class=td>Cell 3</div>
</div>
<div class=tr>
<div class=td>Cell 4</div>
<div class=td>Cell 5</div>
<div class=td>Cell 6</div>
</div>
</div>
ตัวอย่าง
Cell 1
Cell 2
Cell 3
Cell 4
Cell 5
Cell 6