Hi,
I have created table structure using <div> tag as follows
--- css
.divTable
{
display: table;
width:auto;
background-color:#D9EDF7;
border:1px solid #D9EDF7;
border-spacing:5px;
}
.divRow
{
display:table-row;
width:auto;
}
.divCellHidden
{
float:left;
display:table-column;
width:200px;
background-color:#DFF0D8;
display:none;
}
.divCell
{
float:left;
display:table-column;
width:200px;
background-color:#DFF0D8;
}
.divActionCell
{
float:left;
display:table-column;
width:26px;
background-color:#DFF0D8;
}
--- html
<div class="divTable" id="tblContact">
<div class="headRow"&g ...
Go to the complete details ...