you may skip the following HTML code to proceed to actual question
<!-- Some HTML Code-->
<table width="100%" height="100%" border="1">
<tr>
<td rowspan="03" width="20%"> </td>
<td width="60%"> </td>
<td rowspan="03" width="20%"> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>
the output of the above code will be somewhat like this
now i want i CSS Layer (a DIV) setup with the center-cell (red bordered cell) as its REFERENCE how to do it...
#myLayer{
position: ? ;
left : ? ;
right : ? ;
top : ? ;
bottom : ? ;
padding : ? ;
width : * ;
height : * ;
z-index : 2 ;
}
and where to place the <div id="*"></div>
tag