Hey, there coding people,
As you might know, I have started learning CSS variables from scrimba and this is my first post about CSS variables.
I this post you can see I have used CSS variable for this basic web page.
First of all, you have to initialize your CSS variable in the global scope which we can use anywhere in our entire project.
Global scope
:root
{
--black-color: #000;
}
use it like this
.selector-name
{
color: var(--black-color);
}
Check out this codepen for more understanding.
Top comments (4)
A typo: - Use it like this -
You doubled the "e"
Ohh yes sorry for the silly mistake, check once I have changed it. and thanks for the comment :)
Yes, I'll wait for the second chapter!
Of course ๐