diff options
author | Tobias Buschor <tobias.buschor@shwups.ch> | 2021-09-15 14:05:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-15 08:05:52 -0400 |
commit | acd101016d06d49b160357f26b51d6cfd7b3d8cb (patch) | |
tree | 3e0e12e8f883f6dfd905f55811940ee5aac01a5e /opinionated.css | |
parent | 4867dabf66ec31c4b7b5be2a92ddee46075a7f40 (diff) | |
download | normalize.css-acd101016d06d49b160357f26b51d6cfd7b3d8cb.tar.gz normalize.css-acd101016d06d49b160357f26b51d6cfd7b3d8cb.zip |
table border-color currentcolor (#18)
Diffstat (limited to 'opinionated.css')
-rw-r--r-- | opinionated.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opinionated.css b/opinionated.css index 6b342c1..47c155a 100644 --- a/opinionated.css +++ b/opinionated.css @@ -177,12 +177,12 @@ svg:not(:root) { * ========================================================================== */ /** - * 1. Correct table border color inheritance in all Chrome, Edge, and Safari. + * 1. Correct table border color in Chrome, Edge, and Safari. * 2. Remove text indentation from table contents in Chrome, Edge, and Safari. */ table { - border-color: inherit; /* 1 */ + border-color: currentColor; /* 1 */ text-indent: 0; /* 2 */ } |