Answers for "css take variable"

CSS
0

css variable

...
<style>
	:root{
  		--couleur-principale: brown;
	}
	#test1{
		color:var(--couleur-principale);
	}
</style>
...
Posted by: Guest on December-09-2020

Browse Popular Code Answers by Language