It refers to one of the CSS2 system colors , is now deprecated .
Please note that you get the same result Background
as it is indicated in this documentation; CSS is case insensitive, I think they are simply listed in CamelCase
to make word boundaries clearer.
.test {
height: 200px;
width: 200px;
background-color: Background;
}
<div class="test"></div>
Run codeHide result source
share