I have a table made by a set of div elements.
<div class="table-wrapper">
<div class="table-row">
<div class="table-cell"> </div>
<div class="table-cell"> </div>
<div class="table-cell"> </div>
</div>
<div class="table-row">
<div class="table-cell"> </div>
<div class="table-cell span2"> </div>
</div>
</div>
And here's the css
.table-wrapper { display: table; table-layout: fixed; width: 100%;}
.table-row { display: table-row; }
.table-cell { display: table-cell; width: 33%; }
.table-cell.span2 { width: 66%; }
How can I make sure the span2 div will share 2-cell width?