Ah i usually have this problem using DIV TABLES in ie. The only way i found to fix this problem is actually making something like this:
Code:
<!--[if gt IE 5.5]>
<link rel="stylesheet" href="css/ie.css" type="text/css" />
<![endif]-->
<link rel="stylesheet" type="text/css" href="css/main.css" />
gt IE 5.5 means greater then.
In that stylesheet ive the objects that contain the
display: table-cell and added a float left into one style like this:
Code:
.left, .right {
float:left;
}
For me that fixed my problem.
Let me know if that doesnt work.
Reason: IE doesnt not read div tables
Bookmarks