hamzic2019
8/29/2019 - 8:22 PM

Example of Variables in CSS

Example of creating and using variables in css

body {
  --my-background-color-variable: yellow;
  --my-width-value: 100%;
}

div {
  background-color: var(--my-background-color-variable);
  width: var(--my-width-value);
}