1
0
Fork 0
firefox/layout/reftests/flexbox/flexbox-dyn-changeFrameWidth-3-iframe.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

29 lines
524 B
HTML

<html>
<head>
<style>
body {
margin: 0;
}
#container {
display: flex;
flex-direction: column;
border: 10px solid lime;
width: 80px;
height: 80px;
background-color: red;
}
#item {
background-color: lime;
min-height: 0;
width: 80px;
height: auto;
line-height: 80px;
}
</style>
</head>
<body>
<div id="container">
<div id="item">&nbsp;</div>
</div>
</body>
</html>