DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

Variables — Example 13

Quick explanation + ready code for: Variables.

CSS Variables Back to examples
Back to language
Syntax: Variables in CSS. ID: #13

Code

:root{ --gap:11px; }
.card{ padding:var(--gap); }

Notes

You can copy this snippet and adapt it. For advanced, add real-world inputs, edge cases, and tests.