haikuwebkit/LayoutTests/fast/css/calc-percentage-pixel.html

14 lines
242 B
HTML

<html>
<head>
<style>
#rectangle {
width: calc((100% - 20px) / 3);
height: calc((30% + 10px) / 3);
background: green;
}
</style>
</head>
<body>
<div id="rectangle"></div>
</body>
</html>