From bb55babbd1fc484861398692db06d62a495c8e7d Mon Sep 17 00:00:00 2001 From: Paul Radzkov Date: Thu, 12 Jun 2014 00:40:23 +0300 Subject: [PATCH] Address inconsistent styling of b and strong --- CHANGELOG.md | 2 ++ normalize.css | 11 +++++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aaa7a8f..f62888e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ === HEAD +* Address inconsistent styling of b and strong. + === 3.0.3 (March 30, 2015) * Remove unnecessary vendor prefixes. diff --git a/normalize.css b/normalize.css index 74052f4..2eee4fb 100644 --- a/normalize.css +++ b/normalize.css @@ -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 */ } /**