มี colspan ใน CSS ไม่เป็นเท่าที่ผมทราบ แต่จะมีcolumn-span
สำหรับรูปแบบคอลัมน์หลายในอนาคตอันใกล้ แต่เนื่องจากมันเป็นเพียงร่างใน CSS3 คุณสามารถตรวจสอบในที่นี่ อย่างไรก็ตามคุณสามารถแก้ไขปัญหาโดยใช้div
และspan
ด้วยการแสดงผลแบบตารางเช่นนี้
นี่จะเป็น HTML:
<div class="table">
<div class="row">
<span class="cell red first"></span>
<span class="cell blue fill"></span>
<span class="cell green last"></span>
</div>
</div>
<div class="table">
<div class="row">
<span class="cell black"></span>
</div>
</div>
และนี่จะเป็น CSS:
/* this is to reproduce table-like structure
for the sake of table-less layout. */
.table { display:table; table-layout:fixed; width:100px; }
.row { display:table-row; height:10px; }
.cell { display:table-cell; }
/* this is where the colspan tricks works. */
span { width:100%; }
/* below is for visual recognition test purposes only. */
.red { background:red; }
.blue { background:blue; }
.green { background:green; }
.black { background:black; }
/* this is the benefit of using table display, it is able
to set the width of it's child object to fill the rest of
the parent width as in table */
.first { width: 20px; }
.last { width: 30px; }
.fill { width: 100%; }
เหตุผลเดียวที่จะใช้เคล็ดลับนี้คือการได้รับประโยชน์จากtable-layout
พฤติกรรมฉันใช้มันมากหากตั้งค่า div และ span width เป็นเปอร์เซ็นต์ที่แน่นอนไม่ได้ทำให้ข้อกำหนดการออกแบบของเราสมบูรณ์
แต่ถ้าคุณไม่ต้องการได้รับประโยชน์จากtable-layout
พฤติกรรมคำตอบของ Durilaiจะเหมาะกับคุณมากพอ