Até onde eu sei, não há colspan em css, mas haverá column-span
um layout para várias colunas em um futuro próximo, mas como é apenas um rascunho no CSS3, você pode fazer o check-in aqui . De qualquer forma, você pode executar uma solução alternativa usando div
e span
com uma exibição semelhante a uma tabela como esta.
Este seria o 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>
E este seria o 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%; }
A única razão para usar esse truque é obter o benefício do table-layout
comportamento, eu o uso muito se apenas definir a largura de div e span para determinada porcentagem não atender aos requisitos de design.
Mas se você não precisa se beneficiar com o table-layout
comportamento, a resposta de durilai seria adequada para você.