So I'm switching a work internal site over to a complete CSS design, but I'm having one major problem. I have the following code that contains a small navigation menu and then the content:
Pretty simple, right? It displays correctly in Opera, Firefox and Netscape but craps out in IE on one specific page. On that page I have various elements, some being tables that use percentages to specify width. I am assuming that is the main problem since the css styled elements in that "content" div fit correctly.Code:#navigate {
background-color: #0099ff;
float: left;
width: 180px;
}
#content {
margin-left: 182px;
border: 1px solid red;
}
I can post the code of that entire page if it would help. (It is a lot, tho)
And it does pass the W3C validator without errors.
I'm pulling my hair out here.
