mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 10:22:05 -05:00
2887976ce9
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
|