1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:17:35 +00:00
serenity/Tests/LibWeb/Layout/input/grid/intrinsic-sizing-should-account-for-gaps.html

23 lines
No EOL
507 B
HTML

<!DOCTYPE html><style type="text/css">
* {
outline: 1px solid black;
margin: 0px;
padding: 0px;
}
html {
background: white;
}
body {
width: max-content;
background: pink;
}
#menu {
display: grid;
grid-auto-flow: column;
gap: 50px;
background: orange;
}
#wat {
background: green;
}
</style><body><div id="menu"><div>Community</div><div>Community</div></div><div id="wat">wat</div>