Skip to content

Instantly share code, notes, and snippets.

@pointofpresence
Last active May 17, 2020 09:11
Show Gist options
  • Save pointofpresence/dbf64866c534998bed08b117c6d7a1ed to your computer and use it in GitHub Desktop.
Save pointofpresence/dbf64866c534998bed08b117c6d7a1ed to your computer and use it in GitHub Desktop.
Как создать и использовать CSS-переменную?
: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