We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe56763 commit bb55babCopy full SHA for bb55bab
CHANGELOG.md
@@ -1,5 +1,7 @@
1
=== HEAD
2
3
+* Address inconsistent styling of b and strong.
4
+
5
=== 3.0.3 (March 30, 2015)
6
7
* Remove unnecessary vendor prefixes.
normalize.css
@@ -111,12 +111,19 @@ abbr[title] {
111
}
112
113
/**
114
- * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
+ * 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+.
117
*/
118
119
b,
120
strong {
- font-weight: bold;
121
+ font-weight: inherit; /* 1 */
122
+}
123
124
+b,
125
+strong {
126
+ font-weight: bolder; /* 2 */
127
128
129
0 commit comments