trisquel-icecat/icecat/layout/reftests/bugs/1941075.html
2025-10-06 02:35:48 -06:00

20 lines
301 B
HTML

<!DOCTYPE html>
<style>
.container {
position: relative;
width: 100px;
height: 100px;
background: red;
}
.abs {
width: 100px;
height: -moz-available;
background: green;
position: absolute;
inset: 0;
margin: auto;
}
</style>
<div class="container">
<div class="abs"></div>
</div>