mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-24 18:02:20 +00:00
17 lines
392 B
HTML
17 lines
392 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>
|
|
<div style="justify-self: left">Left</div>
|
|
<div style="justify-self: right">Right</div>
|
|
</body>
|