blob: 07f7449d52be5f1f82b97b19dfd57a3290e16293 [file] [log] [blame]
<!doctype html>
<meta charset="utf-8">
<title>CSS test reference</title>
<style>
:root {
background-image: url("/images/blue.png");
}
.frame {
box-sizing: border-box;
width: 100px;
height: 100px;
background-color: purple;
padding: 8px; /* Matches default body margin */
}
.frame > div {
width: 50px;
height: 50px;
background-color: lime;
}
</style>
<div class="frame">
<div></div>
</div>