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

This fixes an issue where `max-width: fit-content` (and other layout-dependent values) were treated as 0 on inline-blocks.
7 lines
164 B
HTML
7 lines
164 B
HTML
<!doctype html><style>
|
|
span {
|
|
border: 1px solid black;
|
|
display: inline-block;
|
|
max-width: fit-content;
|
|
}
|
|
</style><span>hello friends
|