servo/tests/ref/percent_height.html
2014-09-16 09:02:01 -07:00

22 lines
363 B
HTML

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.outer {
background: red;
width: 100px;
height: 100px;
}
.inner {
background: green;
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div class="outer">
<div class="inner"></div>
</div>
</body>
</html>