KESHAVi PATEL,
Generally, you cannot span 100% else you’ll run into trouble especially if you associate horizontal padding or margins in your divs. .... then borders, if used, eat up horizontal dimension.
DIV 1{
float: left;
width: 12%;
margin: 0;
padding: 0;
}
DIV 2{
float: right; (or you can float left, as well with margin-left 13% or better)
width: 84%;
margin: 0;
padding: 0;
}
This gives you 4% in between the divs and renders well in both MSIE & mozilla.
You’ll have to play aeound with it a bit to get it exactly where you need it.
later,
Al Toman