Implement percentage heights for block flows

Fixes #2029
This commit is contained in:
Matt Brubeck 2014-09-14 16:46:44 -07:00
parent 0e2cdc5cca
commit c7e30f87c4
4 changed files with 63 additions and 4 deletions

View file

@ -0,0 +1,22 @@
<!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>