Variable Scope

Variables can be scoped to specific elements.

Preview

Code

<style>
.box{
--bg:#22c55e;
background:var(--bg);
color:white;
padding:10px;
}
</style>

<div class="box">Scoped variable</div>

More CSS Variables Examples (8)