Cookbooks
Lengths

Lengths

To allow users to change the lengths of various CSS attributes add a length variable like this

:root {
    --max-width: 1024px;
}
 
.page-max-width {
    max-width: var(--max-width)
}
<body class='page-max-width'>Applied as expected</span>
⚠️

Note shorthand CSS syntax is unsupported. If you want to use these properties for things like border-radius you must specify each attribute individually.