blob: e3553145110589aacfd351b3b30be2b247eb2bad [file] [log] [blame] [edit]
<!DOCTYPE html>
<html>
<head>
<link rel="author" title="Sammy Gill" href="mailto:[email protected]">
<link rel="help" href="https://drafts.csswg.org/css-rhythm/#block-step-size">
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
<meta name="assert" content="Block size that is the same as the step unit should be unchanged.">
<style>
.container {
display: flow-root;
width: 100px;
background-color: green;
}
.block-step {
height: 100px;
block-step-size: 100px;
}
</style>
</head>
<body>
<p>Test passes if there is a filled green square.</p>
<div class="container">
<div class="block-step"></div>
</div>
</body>
</html>