servo/tests/ref/calc-basic.html
2015-08-26 14:48:34 -07:00

19 lines
213 B
HTML

<!DOCTYPE html>
<div id="outer">
<div id="inner">
</div>
</div>
<style>
#outer {
height: 100px;
width: 200px;
}
#inner {
height: 100%;
width: calc(50px + 30%);
background-color: green;
}
</style>