Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css set variable

:root {
  --main-bg-color: coral;
}

#div1 {
  background-color: var(--main-bg-color);
}

#div2 {
  background-color: var(--main-bg-color);
}
Comment

css variable

:root {
  --main-bg-color: pink;
}
body {
  background-color: var(--main-bg-color);
}
Comment

css variables

:root {
  --background-color: #333;
  --text-color: #fff;
}
body {
  background-color: var(--background-color);
  color: var(--text-color);
}
Comment

variables css

:root {
    --main-bg-color: brown;
  }
  
.uno {
    color: white;
    background-color: var(--main-bg-color);
    margin: 10px;
    width: 50px;
    height: 50px;
    display: inline-block;
}
Comment

css variables

:root {
  --first-color: #16f;
  --second-color: #ff7;
}

#firstParagraph {
  background-color: var(--first-color);
  color: var(--second-color);
}

#secondParagraph {
  background-color: var(--second-color);
  color: var(--first-color);
}

#container {
  --first-color: #290;
}

#thirdParagraph {
  background-color: var(--first-color);
  color: var(--second-color);
}
Comment

create variable in css

:root {
  --tab-count: 5;
}

#div1 {
  width: calc(100% - var(--tab-count));
}
Comment

VAR IN CSS

/* var */
:root{
    --blue--:#2874f0;
}
/* Css reset */
* {
    margin: 0;
    padding: 0;
}

/* header styles */
header {
    background-color: var(--blue--);
    position: sticky;
    top: 0;
    height: 5vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
Comment

how to use variables in css

:root {
  --clr-primary-1: hsl(205, 86%, 17%);
}

.container{
  background-color: var(--clr-primary-3);
}
Comment

css variable

...
<style>
	:root{
  		--couleur-principale: brown;
	}
	#test1{
		color:var(--couleur-principale);
	}
</style>
...
Comment

CSS Variables

body { background-color: #1e90ff; }

h2 { border-bottom: 2px solid #1e90ff; }

.container {
  color: #1e90ff;
  background-color: #ffffff;
  padding: 15px;
}

button {
  background-color: #ffffff;
  color: #1e90ff;
  border: 1px solid #1e90ff;
  padding: 5px;
}
Comment

PREVIOUS NEXT
Code Example
Css :: animation-delay in css 
Css :: css masking 
Css :: learn css 
Css :: line-break 
Css :: class html css 
Css :: css outline shorthand 
Css :: the box model 
Css :: three columsn css grid 
Css :: custom checkbox 
Css :: neumorphism css generator 
Css :: opposite of :not css 
Css :: sweet alert modal form 
Css :: pading 
Css :: scroll css 
Css :: avatar change design html css 
Css :: grid template css 
Css :: label for centered image 
Css :: sphinx css templates 
Css :: datefns get year 
Css :: PY Bisect key sort 
Css :: /* */ 
Css :: capitalize only first letter css 
Css :: moving nested element up css 
Css :: code-runner.executormap kotlin 
Css :: The Sass .sass file is visually different from .scss file, e.g. Example.sass - sass is the older syntax 
Css :: twig language name 
Css :: ancho maximo css 
Css :: Slide up and down animation CSS CodePen 
Css :: #shadow-root (open) css 
Css :: RichText.Content add className 
ADD CONTENT
Topic
Content
Source link
Name
4+6 =