ทางเลือกอื่นในการเรียนเพียงครั้งเดียวในขณะที่รักษาสไตล์ของคุณในไฟล์ CSS ซึ่งสามารถใช้งานได้ใน IE7:
<table class="mytable">
<tr>
<th>From</th>
<th>Subject</th>
<th>Date</th>
</tr>
</table>
<style>
.mytable td, .mytable th { width:15%; }
.mytable td + td, .mytable th + th { width:70%; }
.mytable td + td + td, .mytable th + th + th { width:15%; }
</style>
ไม่นานมานี้คุณยังสามารถใช้nth-child()
ตัวเลือกจาก CSS3 (IE9 +) ซึ่งคุณจะใส่ nr ของคอลัมน์ที่เกี่ยวข้องลงในวงเล็บแทนการร้อยรวมเข้ากับตัวเลือกที่อยู่ติดกัน เช่นนี้ตัวอย่างเช่น:
<style>
.mytable tr > *:nth-child(1) { width:15%; }
.mytable tr > *:nth-child(2) { width:70%; }
.mytable tr > *:nth-child(3) { width:15%; }
</style>