Hasta donde yo sé, no hay colspan en css, pero habrá un column-span
diseño de varias columnas en un futuro próximo, pero dado que es solo un borrador en CSS3, puede verificarlo aquí . De todos modos, puede hacer una solución usando div
yspan
con una pantalla similar a una tabla como esta.
Este sería el 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>
Y este sería el 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%; }
La única razón para usar este truco es obtener el beneficio de table-layout
comportamiento, lo uso mucho si solo establecer div y ancho de tramo en cierto porcentaje no cumplió con nuestros requisitos de diseño.
Pero si no necesita beneficiarse del table-layout
comportamiento, entonces la respuesta de durilai sería suficiente para usted.