blob: d9b442d8a6636a5df71785fb9aabfdb18926581b [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>This test that we wrap flex content properly with min-width is set.</title>
<style>
.flex {
display: flex;
flex-wrap: wrap;
}
.item {
box-sizing: border-box;
min-width: 500px;
flex-basis: 200px;
height: 100px;
background: green;
}
</style>
</head>
<body>
<div class="flex"><div class="item"></div><div class="item"></div></div>
</body>
</html>