Move gray-ness of table borders to quirks mode and restore our prior standards-mode behavior. b=84307 r=fantasai sr=bzbarsky

This commit is contained in:
dbaron%dbaron.org 2007-02-02 06:11:56 +00:00
parent 2f1ac9098f
commit 74d37e4e23
2 changed files with 8 additions and 4 deletions

View File

@ -173,10 +173,6 @@ table {
text-indent: 0;
}
table, td, th {
border-color: gray;
}
table[align="left"] {
float: left;
}

View File

@ -105,6 +105,14 @@ table {
font-variant: -moz-initial;
}
/*
* Make table borders gray for compatibility with what other browsers do
* in all modes, rather than using the foreground color.
*/
table, td, th {
border-color: gray;
}
/* Quirk: collapse top margin of BODY and TD and bottom margin of TD */