mirror of
https://github.com/servo/servo.git
synced 2025-06-23 08:34:42 +01:00
96 lines
No EOL
3 KiB
HTML
96 lines
No EOL
3 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<!--
|
|
Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
--><html xmlns="http://www.w3.org/1999/xhtml"><head>
|
|
<title>CSS Test: Testing flex-wrap in horizontal flex containers</title>
|
|
<link href="mailto:dholbert@mozilla.com" rel="author" title="Daniel Holbert" />
|
|
<link href="http://www.w3.org/TR/css-flexbox-1/#flex-wrap-property" rel="help" />
|
|
<link href="reference/flexbox-flex-wrap-horiz-001-ref.xht" rel="match" />
|
|
<meta charset="utf-8" />
|
|
<style>
|
|
div.flexbox {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
border: 1px dashed black;
|
|
width: 100px;
|
|
height: 12px;
|
|
margin-bottom: 2px;
|
|
}
|
|
div.halfMainSize {
|
|
width: 48px;
|
|
border: 1px solid blue;
|
|
background: lightblue;
|
|
}
|
|
div.hugeMainSize {
|
|
width: 148px;
|
|
border: 1px solid purple;
|
|
background: fuchsia;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Single small flex item -->
|
|
<div class="flexbox">
|
|
<div class="halfMainSize"></div>
|
|
</div>
|
|
|
|
<!-- Single small flex item with 'margin-left' set to push it to protrude
|
|
from the far edge of the container (and to shrink as a result) -->
|
|
<div class="flexbox">
|
|
<div style="margin-left: 80px" class="halfMainSize"></div>
|
|
</div>
|
|
|
|
<!-- Single small inflexible flex item with 'margin-left' set to push it to
|
|
protrude from the far edge of the container -->
|
|
<div class="flexbox">
|
|
<div style="margin-left: 80px; flex: none" class="halfMainSize"></div>
|
|
</div>
|
|
|
|
<!-- Two flex items, exactly large enough to fit in line (no wrapping): -->
|
|
<div class="flexbox">
|
|
<div class="halfMainSize"></div>
|
|
<div class="halfMainSize"></div>
|
|
</div>
|
|
|
|
<!-- and now with some margin on first item, to force second item to wrap: -->
|
|
<div class="flexbox">
|
|
<div style="margin-right: 1px" class="halfMainSize"></div>
|
|
<div class="halfMainSize"></div>
|
|
</div>
|
|
|
|
<!-- and now with some margin on second item, again forcing it to wrap: -->
|
|
<div class="flexbox">
|
|
<div class="halfMainSize"></div>
|
|
<div style="margin-right: 1px" class="halfMainSize"></div>
|
|
</div>
|
|
|
|
<!-- Single large flex item: overflows (but does not wrap) and is shrunk
|
|
to fit container's main-size -->
|
|
<div class="flexbox">
|
|
<div class="hugeMainSize"></div>
|
|
</div>
|
|
|
|
<!-- Single large flex item: overflows (but does not wrap) -->
|
|
<div class="flexbox">
|
|
<div style="flex: none" class="hugeMainSize"></div>
|
|
</div>
|
|
|
|
<!-- Small flex item, followed by large flex item (which wraps to
|
|
its own line and then shrink to container's main-size) -->
|
|
<div class="flexbox">
|
|
<div class="halfMainSize"></div>
|
|
<div class="hugeMainSize"></div>
|
|
</div>
|
|
|
|
<!-- Small flex item, followed by large inflexible flex item (which wraps to
|
|
its own line and then shrink to container's main-size) -->
|
|
<div class="flexbox">
|
|
<div class="halfMainSize"></div>
|
|
<div style="flex: none" class="hugeMainSize"></div>
|
|
</div>
|
|
|
|
|
|
|
|
</body></html> |