33 lines
617 B
CSS
33 lines
617 B
CSS
/* additional hacks for IE
|
|
* TODO: Are they still necessary? (robertb)
|
|
* btw. IE sucks! ;-)
|
|
*/
|
|
|
|
#container { /* IE max-width and PNG no-alpha hack */
|
|
height: 1%;
|
|
width: 750px;
|
|
width:expression(document.body.clientWidth>805?"800px":"auto");
|
|
}
|
|
|
|
#main { width: 63%; margin: 0 0 0 15px; }
|
|
|
|
ul.comments li {
|
|
overflow-x: scroll;
|
|
}
|
|
|
|
#admin table { /* adapting the font size for IE 5.x */
|
|
font-size: 1em;
|
|
}
|
|
|
|
* html #subnav { /* Box-Model Bug */
|
|
content:"\"; width: 30%; padding: 2em 1.5em;
|
|
}
|
|
|
|
* html #main {
|
|
width: 62.5%;
|
|
margin: 0 0 0 15px;
|
|
}
|
|
|
|
html + body #admin { /* close the hole in IE 5.0 */
|
|
margin: 0;
|
|
}
|