Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 4.05 KB

fonts-numerals.md

File metadata and controls

53 lines (36 loc) · 4.05 KB
title authors intro types categories published updated status
Fonts Numerals
thebeebs
The [IE test drive website](http://ie.microsoft.co...
shorts
web
html5at5
2012/03/07 12:00:00
2012/03/07 13:00:00
archived

The IE test drive website has some new demos that show the use of OpenType font features . Over the next few weeks I thought I'd take a look at each of the different features in turn.

OpenType is a technology that is supported by IE10 and Firefox 4+ allows you to use some of the features that are stored in font files to make fonts on webpages look better, you can read more about it here. So on to todays topic:

Numerals

Number Styles

Numbers need to look different when they are used in different contexts. Some styles work in tables and charts, however the same numbers might look rigid and out of place for paragraph text. Numeral styles allow the web designer pick the right style for the right job. The example above which is taken from the W3C site shows how you can use various styles to achieve text that is clearer to read and understand. Here are four of the numeral style that are included in some font.

Lining 

Lining figures are a style of numerals where all figures are the same height and rest on the baseline.

-moz-font-feature-settings: "lnum=1";
-ms-font-feature-settings: "lnum" 1;

Old Style

Are numbers with varying heights. I personally quite like these numbers as it adds interest however I can imagine it might be distracting on a large report.

-moz-font-feature-settings: "onum=1";
-ms-font-feature-settings: "onum" 1;

Tabular numerals

This is when each numeral has the same total character width. It makes it easy to compare numbers in rows.

-moz-font-feature-settings: "tnum=1";
-ms-font-feature-settings: tnum" 1;

Proportional numerals

This s how most fonts usually appear, the width of each numeral varies. Proportional figures are not intended for use in charts and tables, since they won't align vertically.

-moz-font-feature-settings: "pnum=1";
-ms-font-feature-settings: pnum" 1;

Be aware that this is experimental and at this stage and it would be unwise to use this in production websites. We use vendor prefixes to convey that this feature is experimental. If you want to know more about vendor prefixes then check this post out.