fullaf / fGrid

Sass Responsive Grid System
https://fgrid.wjdp.uk
MIT License
4 stars 2 forks source link

Typography mixins #14

Open wjdp opened 9 years ago

wjdp commented 9 years ago

Construct a set of typographic mixins and utilities to align with best practice esp. with regard to spacing/baselines.

wjdp commented 9 years ago

Found this on a list apart:

@mixin truncate($truncation-boundary){
    max-width:$truncation-boundary;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}