Hi,
Unless I've added up incorrectly then you seem to be a pixel out anyway. the width of the container is 728px mins 4px for borders = 724px. The content is 515 +10px =525 and the right is 200px. Therefore 515 + 10 + 200 = 725px which is 1 px too large.
the other problem is ie's layout bug and can be fixed with the height:1% hack as follows.
Code:
#content {
width: 514px;
float: left;
padding: 5px 10px 0 0;
}
#textArea {
background-color: #ffffff;
width:500px;
padding-right:4px;
}
/* mac hide \*/
* html #nav, * html #googleTower{height:1%}
/* end hide */
Hope that helps.
Bookmarks