Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<!--
Any copyright is dedicated to the Public Domain.
-->
<html>
<head>
<title>CSS Test: Ensure that min-width is honored for horizontal multi-line flex containers</title>
<link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
<link rel="match" href="flexbox-flex-wrap-horiz-002-ref.html">
<meta charset="utf-8">
<style>
div.flexbox {
display: flex;
flex-wrap: wrap;
border: 1px dashed black;
min-width: 100px;
height: 12px;
float: left;
clear: both;
margin-bottom: 2px;
}
div.smallItem {
width: 30px;
border: 1px solid blue;
background: lightblue;
}
</style>
</head>
<body>
<!-- No flex items -->
<div class="flexbox">
</div>
<!-- Single small flex item -->
<div class="flexbox">
<div class="smallItem"></div>
</div>
<!-- Multiple flex items, larger than flex container's min-size: -->
<div class="flexbox">
<div class="smallItem"></div>
<div class="smallItem"></div>
<div class="smallItem"></div>
<div class="smallItem"></div>
<div class="smallItem"></div>
</div>
<!--- ...and now with flex container constrained by both min and max-size -->
<div class="flexbox" style="max-width: 120px">
<div class="smallItem"></div>
<div class="smallItem"></div>
<div class="smallItem"></div>
<div class="smallItem"></div>
<div class="smallItem"></div>
</div>
</body>
</html>