blob: 2e7fb37f6f88d190f0e360a17481a1bb231d5035 [file] [log] [blame]
<!DOCTYPE html>
<body>
<style>
.parent {
width: 100px;
height: 100px;
background: blue;
}
.child {
width: 30px;
height: 30px;
background: green;
}
</style>
<div class="parent">
<div class="child">
</div>
</div>
</body>