mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 14:07:45 +00:00

This solves a particular issue with SVG as flex items, where the SVG has an intrinsic aspect ratio via its viewBox, but no explicit natural width or height. Makes all corporate sponsor logos show up on https://ziglang.org/ :^)
6 lines
171 B
HTML
6 lines
171 B
HTML
<!DOCTYPE html><style>
|
|
body {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
</style><body><svg viewBox="0 0 24 24"><rect x=0 y=0 width=12 height=12></svg>
|