blob: 533d97425e2fbe896ed63a2c87b4dba3fab30be6 [file] [log] [blame] [edit]
<style>
.container {
width: 100px;
background-color: green;
}
.float {
float: left;
width: 30px;
height: 100px;
}
.float_avoider {
overflow: hidden;
height: 50px;
}
</style>
<div class=container>
<div class=float></div>
<div class=float_avoider style="margin-inline-start: 10px"></div>
<div class=float_avoider style="margin-inline-start: -10px"></div>
</div>