mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:17:45 +00:00
LibWeb: Respect box-sizing in min-height calculation of grid container
This commit is contained in:
parent
92ae90085d
commit
ed42b12123
3 changed files with 20 additions and 1 deletions
|
@ -0,0 +1,9 @@
|
|||
<style type="text/css">
|
||||
.box {
|
||||
display: grid;
|
||||
min-height: 300px;
|
||||
padding-top: 200px;
|
||||
box-sizing: border-box;
|
||||
background-color: magenta;
|
||||
}
|
||||
</style><div class="box"></div>
|
Loading…
Add table
Add a link
Reference in a new issue