i need help converting something like this to div
cause if i have to use div on this, it could minimize coding. just two of them while 3 pairs of tag on table thing. :)Code:<table>
<td></td>
<td></td>
</table>
Printable View
i need help converting something like this to div
cause if i have to use div on this, it could minimize coding. just two of them while 3 pairs of tag on table thing. :)Code:<table>
<td></td>
<td></td>
</table>
In the style part
In the bodyCode:.lcol {
width: 200px;
border: solid 1px #f0f;
}
.rcol {
width: 200px;
border: solid 1px #0ff;
}
.fleft { float: left; }
Should give you an idea. Best to use firefox to view your pages first, and then in ie.Code:<div class='lcol fleft'>Left Div</div><div class='rcol fleft'>Right Div</div>
You'll need to read up on fixs for ie, and CSS.
Vince
thank you.