1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 05:38:11 +00:00
serenity/Tests/LibWeb/Layout/input/grid/justify-self.html
2023-07-14 15:48:58 +02:00

15 lines
304 B
HTML

<!DOCTYPE html>
<style>
* {
border: 1px solid black;
}
body {
display: grid;
grid-template-columns: 1fr;
}
</style>
<body>
<div style="justify-self: start">Start</div>
<div style="justify-self: center">Center</div>
<div style="justify-self: end">End</div>
</body>