1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 11:05:06 +00:00
serenity/Tests/LibWeb/Layout/input/grid/auto-flow-column.html
2023-08-20 15:36:18 +02:00

8 lines
No EOL
200 B
HTML

<!doctype html><style>
* { border: 1px solid black; }
body {
display: grid;
grid-auto-flow: column;
width: 200px;
}
</style><body><div>hello</div><div>friends</div>