Skip to content

Commit a5c26a4

Browse files
authored
Fix <table> declarations (#79)
1 parent ff296ba commit a5c26a4

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

modern-normalize.css

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,13 +107,11 @@ Tabular data
107107
*/
108108

109109
/**
110-
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
111-
2. Correct table border color inheritance in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
110+
Correct table border color inheritance in Chrome and Safari. (https://issues.chromium.org/issues/40615503, https://bugs.webkit.org/show_bug.cgi?id=195016)
112111
*/
113112

114113
table {
115-
text-indent: 0; /* 1 */
116-
border-color: inherit; /* 2 */
114+
border-color: currentcolor;
117115
}
118116

119117
/*

0 commit comments

Comments
 (0)