haikuwebkit/LayoutTests/fast/flexbox/flex-wrap-when-min-widht-is...

25 lines
395 B
HTML

<!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>