mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 21:55:08 +00:00
23 lines
303 B
HTML
23 lines
303 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<style>
|
|
body {
|
|
float: left;
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: 20px;
|
|
}
|
|
|
|
.whee {
|
|
background: pink;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="grid">
|
|
<div class="whee" style="border: 1px solid black;">whee
|