1
0
Derivar 0

css: fix bad rendering in Internet Explorer

The layout-tables used border-collapse:separate, which maked all pages look
really bad in IE. Fix it.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Este cometimento está contido em:
Lars Hjemli 2007-05-12 00:29:37 +02:00
ascendente 9f48df63f6
cometimento f5af0beb6a
1 ficheiros modificados com 7 adições e 2 eliminações

Ver ficheiro

@ -2,10 +2,16 @@ body {
font-family: arial;
font-size: 11pt;
background: white;
}
body, table {
padding: 0em;
margin: 0em;
}
table {
border-collapse: collapse;
}
h2 {
font-size: 120%;
@ -64,8 +70,7 @@ img {
table#layout {
width: 100%;
border-collapse: separate;
border-spacing: 0px;
border-collapse: collapse;
margin: 0px;
}