mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 05:38:11 +00:00
12 lines
No EOL
270 B
HTML
12 lines
No EOL
270 B
HTML
<!DOCTYPE html><style type="text/css">
|
|
.flex {
|
|
display: flex;
|
|
}
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
.w-fit {
|
|
width: fit-content;
|
|
}
|
|
</style><div class="flex"><div class="grid"><div class="w-fit">Col1</div><div class="w-fit">Col2</div> |