🏠 New in High Baseline Support: Custom properties
October 5, 2019
Custom properties are CSS properties prefixed with --
that set values you can reuse with the var()
function. For example, you can set a --key-color
property to reuse as border-color: var(--key-color)
. Also known as CSS variables.