@@@
Summary
- Browsers may have compatibility issues when running CSS.
- It is important to use fallbacks.
Final Code
<style>
:root {
--red-color: red;
}
.red-box {
background: red;
background: var(--red-color);
height: 200px;
width:200px;
}
</style>
<div class="red-box"></div>