Topic: Convert table to <DIV> CSS
I have tired to make that, with 3 Columns the middle must be variable width fit to the space,
|--Fixed left column size--|--Middle fit to rest of space--|--Fixed right column size--|
.home_leftcol {
float:left;
position:relative;
z-index:10;
width:140px;
overflow:hidden;
}
.home_middlecol {
float:left;
position:relative;
width:100%;
position:relative;
z-index:12;
}
.home_rightcol {
float:left;
position:relative;
z-index:11;
width:230px;
overflow:hidden;
}
how to make it, i spend 3 day to make it but i was failed.
Thanks.