Skip to content

Commit bb55bab

Browse files
paulradzkovJonathan Neal
authored andcommitted
Address inconsistent styling of b and strong
1 parent fe56763 commit bb55bab

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
=== HEAD
22

3+
* Address inconsistent styling of b and strong.
4+
35
=== 3.0.3 (March 30, 2015)
46

57
* Remove unnecessary vendor prefixes.

normalize.css

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,19 @@ abbr[title] {
111111
}
112112

113113
/**
114-
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
114+
* Address inconsistent styling of b and strong.
115+
* 1. Correct duplicate application of `bolder` in Safari 6.0.2.
116+
* 2. Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+.
115117
*/
116118

117119
b,
118120
strong {
119-
font-weight: bold;
121+
font-weight: inherit; /* 1 */
122+
}
123+
124+
b,
125+
strong {
126+
font-weight: bolder; /* 2 */
120127
}
121128

122129
/**

0 commit comments

Comments
 (0)