Last active
May 17, 2020 09:11
-
-
Save pointofpresence/dbf64866c534998bed08b117c6d7a1ed to your computer and use it in GitHub Desktop.
Как создать и использовать CSS-переменную?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root { | |
--main-bg-color: brown; | |
} | |
.one { | |
background-color: var(--main-bg-color); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment