Насколько я знаю, в css нет colspan, но 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 span на определенный процент не выполнила наши требования к дизайну.
Но если вам не нужно извлекать выгоду из этого table-layout
поведения, то ответ Дурилай подойдет вам достаточно.