cssfontparser

parse shorthand css font strings"

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
cssfontparser
801.2.18 years ago10 years agoMinified + gzip package size for cssfontparser in KB

Readme

ccsfontparser
parse shorthand css font declarations into an object
install
npm install cssfontparser
use
var parse = require('cssfontparser');
var obj = parse('italic small-caps bolder 50%/20px serif', '1in san-serif', 400);
console.log(obj);

/* outputs:

{ style: 'italic',
  variant: 'small-caps',
  weight: 'bolder',
  size: 200,
  lineHeight: 20,
  family: 'serif' }

*/

console.log(obj.toString());

/* outputs:
  'italic small-caps bolder 200px/20px serif'
*/
signature
cssfontparser("font string","parent font string", dpi = 96.0);
note: a parent font string is required for em and % size calculations.
license