LibWeb: Respect box-sizing in min-height calculation of grid container

This commit is contained in:
Aliaksandr Kalenik 2023-12-26 02:58:53 +01:00 committed by Andreas Kling
commit ed42b12123
Notes: sideshowbarker 2024-07-17 07:20:57 +09:00
3 changed files with 20 additions and 1 deletions

View file

@ -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>