Skip to content

Instantly share code, notes, and snippets.

@steevehook
Last active August 22, 2018 13:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save steevehook/1ba8356f900c11921feaa99b93748a1f to your computer and use it in GitHub Desktop.
Save steevehook/1ba8356f900c11921feaa99b93748a1f to your computer and use it in GitHub Desktop.
Pure value css variable
.block {
--d: 30;
width: calc(var(--d) * 1vw);
height: calc(var(--d) * 1vh);
}
/*
Number --> Unit: calc(var(--v) * 1px)
Unit --> Number: You can't
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment