1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 18:15:07 +00:00
serenity/Tests/LibWeb/Layout/input/flex-item-auto-height-with-wrap.html

18 lines
479 B
HTML

<!DOCTYPE html><html><head><style>
html {
background: white;
font: 16px 'SerenitySans';
}
.outer {
width: 400px;
height: 100px;
display: flex;
flex-direction: column;
background: pink;
}
.inner {
display: flex;
flex-wrap: wrap;
background: orange;
}
</style></head><body class="outer"><div class="inner">The orange box should have a snug height</div></div></div>