blob: 1e16c079c146978e6f7efa0dc93bb1f786e33d66 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>This test that we wrap flex content properly with min-width is set.</title>
<style>
<style>
.flex {
display: flex;
flex-wrap: wrap;
}
.item {
flex-grow: 1;
flex-basis: 35%;
min-width: 600px;
height: 100px;
background: green;
}
</style>
</head>
</body>
<div class="flex"><div class="item"></div><div class="item"></div></div>
</body>
</html>