หากต้องการสร้างคอลัมน์ที่มีความสูงเท่ากันด้วย CSS โค้ดจะเป็นดังนี้ -
ตัวอย่าง
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .container { display: table; width: 100%; } .column { display: table-cell; padding: 16px; background-color: greenyellow; } .column:nth-of-type(2n-1) { color: red; background-color: yellow; } </style> </head> <body> <h1>Equal Height Columns Example</h1> <div class="container"> <div class="column"> <h2>Column 1</h2> <h2>Column 1</h2> <h2>Column 1</h2> </div> <div class="column"> <h2>Column 2</h2> <h2>Column 2</h2> <h2>Column 2</h2> </div> <div class="column"> <h2>Column 3</h2> <h2>Column 3</h2> <h2>Column 3</h2> </div> </div> </body> </html>
ผลลัพธ์
รหัสข้างต้นจะสร้างผลลัพธ์ต่อไปนี้ -