Hey,
My site is showing up fine in IE8/FF/Chrome but I can't figure out how to make it function with IE.
The relevant CSS:
#maincontent {
display: table;
}
#content {
display: table-cell;
width: 620px;
padding-left:4%;
padding-right: 22px;
padding-bottom:15px;
}
#sidebar {
display: table-cell;
width: 300px;
}
#content
and #sidebar
are in #maincontent
. On IE6/7 #sidebar
will be under #content
. I've tried setting the sidebar to display:block
with a float
, and it will then render fine in IE6/7 but all the other browsers get screwed up. How can I get this setup?
Thanks