rework-font-variant
Version:
Implements the font-variant-* properties for browsers that don't yet support them.
34 lines (25 loc) • 364 B
CSS
/**
* Comment.
*/
table {
width: 100%;
font-variant-numeric: tabular-nums;
}
abbr {
font-variant-caps: all-small-caps;
text-decoration: underline;
font-size: 23px;
}
h1 {
font-variant: normal;
}
h1 a {
font-variant: inherit;
}
h2 {
font-weight: bold;
font-variant: all-small-caps oldstyle-nums;
}
p {
font-variant-position: normal;
}