|
|
|
|
|
by ned
5275 days ago
|
|
So it seems like we now have two way of specifying small caps: font-feature-settings: "smcp=1”;
and… font-variant: small-caps;
The later is the CSS 2.1 syntax, and will force the browser to create small caps on its own if the chosen font doesn't contain small caps glyphs.The Open Type version is probably better, since it falls back to lower case glyphs if the browser doesn't support them, instead of an emulated version that probably won't be very legible. |
|