Skip to content

Commit

Permalink
Adjust small font size normalization
Browse files Browse the repository at this point in the history
Make the font size for `small` not quite so small. The default value of
`smaller` doesn't scale the base font size down by the same proportion
whatever the base size. IE 6/7/8 end up rendering small text larger than
most modern browsers. Opera can render it slightly smaller than Chrome
and Firefox when the base font size is relatively large.

The previous size of `75%` was a bit too small.
necolas committed Aug 19, 2012
1 parent 138536c commit 0cdbf7c
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
== HEAD

* Adjust `small` font size normalization.

== 1.0.0 (August 14, 2012)

(Only the notable changes since public release)
6 changes: 5 additions & 1 deletion normalize.css
Original file line number Diff line number Diff line change
@@ -241,8 +241,12 @@ q:after {
content: none;
}

/*
* Addresses inconsistent and variable font size in all browsers.
*/

small {
font-size: 75%;
font-size: 80%;
}

/*

0 comments on commit 0cdbf7c

Please sign in to comment.