I have a html table with 1st row containing 5 blocks and 2nd row containing 2 blocks.
The 2nd row 2nd block contains 5 radio buttons as well.
I need the 2 row 2nd block to be spanned across 1st rows last 4 blocks
http://jsfiddle.net/8T5RZ/
HTML Code
<table>
<tr>
<div class="tabular-div"></div>
<div class="tabular-div"></div>
<div class="tabular-div"></div>
<div class="tabular-div"></div>
<div class="tabular-div"></div>
</tr>
<tr>
<div class="tabular-div"></div>
<div class="tabular-div">
<input type="radio" />
<input type="radio" />
<input type="radio" />
</div>
</tr>
</table>
css code
.tabular-div {
background-color:green;
width:100px;
height:50px;
border-style:solid;
border-width:5px;
display:inline-block;
}