mirror of
https://github.com/necolas/normalize.css.git
synced 2024-12-25 15:14:19 +00:00
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:
parent
138536c843
commit
0cdbf7c713
@ -1,3 +1,7 @@
|
|||||||
|
== HEAD
|
||||||
|
|
||||||
|
* Adjust `small` font size normalization.
|
||||||
|
|
||||||
== 1.0.0 (August 14, 2012)
|
== 1.0.0 (August 14, 2012)
|
||||||
|
|
||||||
(Only the notable changes since public release)
|
(Only the notable changes since public release)
|
||||||
|
6
normalize.css
vendored
6
normalize.css
vendored
@ -241,8 +241,12 @@ q:after {
|
|||||||
content: none;
|
content: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Addresses inconsistent and variable font size in all browsers.
|
||||||
|
*/
|
||||||
|
|
||||||
small {
|
small {
|
||||||
font-size: 75%;
|
font-size: 80%;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user