Adjust small font size normalization

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.
This commit is contained in:
Nicolas Gallagher 2012-08-19 19:32:47 +01:00
parent 138536c843
commit 0cdbf7c713
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,7 @@
== HEAD
* Adjust `small` font size normalization.
== 1.0.0 (August 14, 2012)
(Only the notable changes since public release)

6
normalize.css vendored
View File

@ -241,8 +241,12 @@ q:after {
content: none;
}
/*
* Addresses inconsistent and variable font size in all browsers.
*/
small {
font-size: 75%;
font-size: 80%;
}
/*