Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-shapes/shape-outside/assorted/float-retry-push-polygon.html - WPT Dashboard Interop Dashboard
<!DOCTYPE HTML>
<meta charset="utf-8">
<title>Retry inline floats until they fit -- polygon</title>
<link rel="author" title="Brad Werth" href="mailto:bwerth@mozilla.com">
<link rel="match" href="reference/float-retry-push-ref.html">
<meta name="assert" content="Test that a too-wide inline block is pushed in the block direction along a shape-outside polygon until it fits.">
<style>
body {
margin: 0px;
line-height: 1;
}
#too-wide {
display: inline-block;
height: 20px;
width: 250px;
background: blue;
}
#shape {
width: 100px;
height: 100px;
float: left;
shape-outside: polygon(0px 0px, 100px 0px, 0px 100px);
}
</style>
<div style="width: 300px; height: 100px;">
<div id="shape"></div>
<span id="too-wide"></span>
<div>