mirror of
https://git.zx2c4.com/cgit
synced 2024-11-09 18:18:42 +00:00
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>
This commit is contained in:
parent
9f48df63f6
commit
f5af0beb6a
9
cgit.css
9
cgit.css
@ -2,10 +2,16 @@ body {
|
|||||||
font-family: arial;
|
font-family: arial;
|
||||||
font-size: 11pt;
|
font-size: 11pt;
|
||||||
background: white;
|
background: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
body, table {
|
||||||
padding: 0em;
|
padding: 0em;
|
||||||
margin: 0em;
|
margin: 0em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
font-size: 120%;
|
font-size: 120%;
|
||||||
@ -64,8 +70,7 @@ img {
|
|||||||
|
|
||||||
table#layout {
|
table#layout {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-collapse: separate;
|
border-collapse: collapse;
|
||||||
border-spacing: 0px;
|
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user