CSS Props Review
Often used like a global loose typed key / value store
/* definition */
:root {
--brand: hotpink;
}
/* usage */
button {
background: var(--brand);
}
Often used like a global loose typed key / value store
/* definition */
:root {
--brand: hotpink;
}
/* usage */
button {
background: var(--brand);
}