Skip to content

Commit 5daad01

Browse files
fritxJonathan Neal
authored andcommitted
1 parent 5304c78 commit 5daad01

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* Ensure `mark` long-hand background declaration usage.
66
* Remove color inheritance from form controls.
77
* Address inconsistent styling of abbr[title].
8+
* Correct inheritance and scaling of font-size for preformatted text.
89

910
=== 3.0.3 (March 30, 2015)
1011

normalize.css

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -236,15 +236,16 @@ pre {
236236
}
237237

238238
/**
239-
* Address odd `em`-unit font size rendering in all browsers.
239+
* 1. Correct inheritance and scaling of font-size for preformatted text.
240+
* 2. Address odd `em`-unit font size rendering in all browsers.
240241
*/
241242

242243
code,
243244
kbd,
244245
pre,
245246
samp {
246-
font-family: monospace, monospace;
247-
font-size: 1em;
247+
font-family: monospace, monospace; /* 1 */
248+
font-size: 1em; /* 2 */
248249
}
249250

250251
/* Forms

0 commit comments

Comments
 (0)