mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 02:47:35 +00:00
23 lines
No EOL
507 B
HTML
23 lines
No EOL
507 B
HTML
<!DOCTYPE html><style type="text/css">
|
|
* {
|
|
outline: 1px solid black;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
html {
|
|
background: white;
|
|
}
|
|
body {
|
|
width: max-content;
|
|
background: pink;
|
|
}
|
|
#menu {
|
|
display: grid;
|
|
grid-auto-flow: column;
|
|
gap: 50px;
|
|
background: orange;
|
|
}
|
|
#wat {
|
|
background: green;
|
|
}
|
|
</style><body><div id="menu"><div>Community</div><div>Community</div></div><div id="wat">wat</div> |