<style>
/*declare a css variable*/
:root{
--main-color-value:green;
}
div{
background-color:var(--main-color-value);
}
</style>
<head>
<style>
/*declare a css variable*/
:root{
--main-color-value:green;
}
div{
width:100px;
height:100px;
background-color:var(--main-color-value);
}
</style>
</head>
<body>
<div></div>
</body>
<style>
/*padding*/
:root{
--tdb-padding:10px;
--tab-width:100px;
}
div{
width:var(--tab-width);
height:100px;
padding:(--tab-padding)
}
</style>
Share TDB SCHOOL
Share this E-Learning Website on social media platforms with your friends and followers