1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:58:11 +00:00
serenity/Tests/LibWeb/Layout/input/grid/floating-item.html
2023-10-29 09:43:13 +01:00

15 lines
No EOL
221 B
HTML

<!DOCTYPE html><style>
* {
border: 1px solid black;
}
.grid {
display: grid;
}
.float-left {
float: left;
width: 100px;
height: 100px;
}
</style><div class="grid"><div class="float-left"></div></div>