Address inconsistent styling of b and strong

This commit is contained in:
Paul Radzkov 2014-06-12 00:40:23 +03:00 committed by Jonathan Neal
parent fe567632af
commit bb55babbd1
2 changed files with 11 additions and 2 deletions

View File

@ -1,5 +1,7 @@
=== HEAD
* Address inconsistent styling of b and strong.
=== 3.0.3 (March 30, 2015)
* Remove unnecessary vendor prefixes.

11
normalize.css vendored
View File

@ -111,12 +111,19 @@ abbr[title] {
}
/**
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
* Address inconsistent styling of b and strong.
* 1. Correct duplicate application of `bolder` in Safari 6.0.2.
* 2. Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+.
*/
b,
strong {
font-weight: bold;
font-weight: inherit; /* 1 */
}
b,
strong {
font-weight: bolder; /* 2 */
}
/**