Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-rhythm/block-step-size-none-does-not-establish-block-formatting-context.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<link rel="author" href="mailto:sammy.gill@apple.com">
<link rel="match" href="/css/reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="block-step-size none should not establish a block formatting context for the block box">
<style>
div {
width: 100px;
height: 100px;
background-color: green;
}
.floating {
position: relative;
z-index: -1;
float: left;
background-color: red;
}
.block-step-size {
block-step-size: none;
}
</style>
</head>
<body>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="floating"></div>
<div class="block-step-size"></div>
</body>
</html>