mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 05:38:11 +00:00
11 lines
No EOL
350 B
HTML
11 lines
No EOL
350 B
HTML
<!DOCTYPE html><style>
|
|
* { border: 1px solid black; }
|
|
.grid { display: grid; }
|
|
.start { justify-items: start; }
|
|
.center { justify-items: center; }
|
|
.end { justify-items: end; }
|
|
</style>
|
|
<body>
|
|
<div class="grid start"><div>Start</div></div>
|
|
<div class="grid center"><div>Center</div></div>
|
|
<div class="grid end"><div>End</div></div> |