ladybird/Tests/LibWeb/Layout/input/flex-item-vertical-padding-relative-to-flex-container-width.html
Andreas Kling da861fe7af Tests/LibWeb: Use SerenitySans in new layout tests
This ensures consistent font metrics no matter which platform fonts
are available.
2023-03-10 18:10:33 +01:00

21 lines
366 B
HTML

<style>
* {
border: 1px solid black;
font-family: 'SerenitySans';
}
.flex-container {
display: flex;
width: 600px;
height: 10px;
}
.flex-item {
background: orange;
box-sizing: border-box;
min-height: 200px;
padding-top: 10%;
padding-bottom: 20%;
}
</style>
<body>
<div class="flex-container">
<div class="flex-item">foo</div>