CSS table

HTML

<div id="table">
    <div class="row"> 
        <span class="cell">1<input/></span>
 <span class="cell">2<input/></span>
 <span class="cell">3<input/></span>
    </div>
    <div class="row"> 
 <span class="cell">4<input/></span>
 <span class="cell">5<input/></span>
 <span class="cell">6<input/></span>
    </div>
    <div class="row"> 
 <span class="cell">7<input/></span>
 <span class="cell">8<input/></span>
 <span class="cell">9<input/></span>
    </div>
</div>

CSS

#table {
    display: table;
    border: solid red 1px;
}
.row {
    display: table-row;
}
.cell {
    display: table-cell;
    border: solid green 1px;
}