mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:07:35 +00:00
LibWeb: Set min-width for inline child boxes after inside layout
min-width for boxes with inline children can only be applied after inside layout is done and width of box content is known.
This commit is contained in:
parent
50bf303edd
commit
d32bf4cd41
3 changed files with 42 additions and 2 deletions
|
@ -0,0 +1,12 @@
|
|||
<!doctype html><style>
|
||||
* {
|
||||
border: 1px solid black !important;
|
||||
}
|
||||
body {
|
||||
width: max-content;
|
||||
}
|
||||
.inner {
|
||||
min-width: 600px;
|
||||
font-size: 50px;
|
||||
}
|
||||
</style><body><div class="outer"><div class="inner">well hello friends
|
Loading…
Add table
Add a link
Reference in a new issue