postcss-baseline-vertical-rhythm
v0.1.3
Published
A PostCSS plugin to create a vertical rhythm with the baseline of text.
Downloads
27
Maintainers
Readme
postcss-baseline-vertical-rhythm
A PostCSS plugin to create a vertical rhythm with the baseline of text.
WARNING! This is very much experimental alpha software. It has not been used anywhere, let alone in production. As such, it should be considered very unstable and likely to change.
TODO describe sub-pixel rounding http://www.unumux.com/ux-insights/2016/2/24/subpixel-troubleshooting https://engageinteractive.co.uk/blog/em-vs-rem-vs-px
TODO consider making this a postcss-mixins function-mixin instead: https://github.com/postcss/postcss-mixins#function-mixin
Usage
Install:
npm install postcss-baseline-vertical-rhythm --save-dev
Then include the plugin:
postcss([ require('postcss-baseline-vertical-rhythm')(options) ])
See PostCSS docs for examples for your environment.
Theory
An in-depth explanation of font metrics can be found here: https://iamvdo.me/en/blog/css-font-metrics-line-height-and-vertical-align
By defining a vertical unit, you can create a vertical rhythm by setting heights, line-heights, (top and bottom) padding/margin/border to multiples of this unit. It gets complicated when you want to align the text's baseline to this grid too - this is different for every font, and there's no CSS property that can help.
This plugin attempts to solve this problem by using the font's specific metrics to set the text element's top and bottom padding.
Preset Font Metrics
Currently, this plugin already has metrics defined for the following fonts:
- Arial
- TimesNewRoman
More common font metrics will be added in future.
Custom Font Metrics
You can configure other fonts by following these steps:
- Visit this link and upload a TTF version of your font: https://opentype.js.org/font-inspector.html
- From the results, note the following values:
- unitsPerEm = Font Header Table >> unitsPerEm
- lineGap = Horizontal Header table >> lineGap
- ascender = OS/2 and Windows Metrics table >> usWinAscent
- descender = OS/2 and Windows Metrics table >> usWinDescent
- Choose a unique name for the font, and add an item to the postcss plugin options e.g:
{
fonts: [{
fontName: 'Roboto',
unitsPerEm: 2048,
lineGap: 0,
ascender: 1946,
descender: 512
}]
}
Basic Usage
The following postcss plugin configuration defines a vertical unit of 17px
.
postcss({
require('postcss-baseline-vertical-rhythm')({
unit: 'px',
verticalUnit: 17
})
})
The custom at-rule in the CSS below tells the plugin we're using the TimesNewRoman
font, so it knows which font metrics to use. The font-size
property tells the plugin the font should be 24px (24 * the unit we defined in settings).
NB: It will usually be necessary to override the default vertical margins to a multiple of the vertical unit, in this case via margin: 0 0 17px;
p {
@baseline-vertical-rhythm {
font-name: TimesNewRoman;
font-size: 24;
}
font-family: TimesNewRoman, "Times New Roman", serif;
margin: 0 0 17px;
}
The processed CSS will be:
p {
font-size: 24px;
line-height: 34px;
padding-top: 8.9023px;
padding-bottom: 8.0977px;
font-family: TimesNewRoman, "Times New Roman", serif;
margin: 0 0 17px;
}
Options
Type object | Null
Default:
{
unit: 'rem',
verticalUnit: 1,
debug: false,
precision: 2,
fonts: []
}
unit
(String) The unit to use for all calculations. Absolute units such asrem
orpx
will probably be easierverticalUnit
(Number) The number of units in the vertical rhythmdebug
(Boolean) If true, comments will be added to the processed CSS with calculated metricsprecision
(Integer) max decimal places output. Browsers like Edge round to 2 decimal places anyway, so setting a value of 2 (default) gives us more control.fonts
(Array of Objects) Define metrics for additional fonts here (see Custom Font Metrics section above)
At-rule Properties
font-name
(String) Required. The name of the font being usedfont-size
(Number) Required. The size of the font to be displayedline-height-factor
(Integer). By default, the plugin will calculate line-height as the smallest multiple of the vertical-unit that's larger than the normal line height. If aline-height-factor
is set, it overrides that value and can be used to create greater space between lines.border-top-width
(Number default 0). If set, padding top value will allow for a top border of this thickness.border-bottom-width
(Number default 0). If set, padding bottom value will allow for a bottom border of this thickness.padding-top-extra
(Integer default 0). If set, allows for extra top padding as a multiple of the vertical unit.padding-bottom-extra
(Integer default 0). If set, allows for extra bottom padding as a multiple of the vertical unit.
Examples
Examples can be found in the fixtures
folder. Clone the repository and open the html files to see them in action.
Tips
Background lines
While developing, add the following rule to see your grid and check everything aligns:
body {
background-size: 1.5rem 1.5rem;
background-image: linear-gradient(hsla(200, 100%, 70%, 0.5) 1px, transparent 1px);
}
Replace 1.5rem
with whatever your vertical unit is.
Horizontal Scrollbars
If you have horizontal scrollbars, you can set the height to a multiple of your vertical unit. See https://css-tricks.com/almanac/properties/s/scrollbar/
Unfortunately, this only seems possible for Webkit based browsers for now. Horizontal scrollbars in Edge or Firefox will probably break your vertical rhythm.
Stylelint Config
If using stylelint to lint CSS, add the following rules to your configuration to prevent it breaking:
"rules": {
"at-rule-no-unknown": [true, {
"ignoreAtRules": ["baseline-vertical-rhythm"]
}],
"property-no-unknown": [true, {
"ignoreProperties": [
"font-name",
"line-height-factor",
"padding-top-extra",
"padding-bottom-extra"
]
}]
}
Licence
Released under the MIT license.