Using variable in CSS
05 Aug 2020 • CSS
In CSS, we apply background color or font color as following:
.class-name {
color: #ffffff;
background-color: #000000;
}
Soon, the hex code would be scattered in different places. And if the... Read More