blob: 2b719f555b1cbbb33c748a9922549f7ca9ba4665 [file] [edit]
<style>
.container {
width: 300px;
height: 500px;
direction: rtl;
outline: 1px solid green;
}
.float, .clear {
display: block;
height: 30px;
width: 100px;
background: green;
}
.clear {
background: blue;
}
</style>
<div class=container>
<span>
<div class="float" style="float: inline-start;"></div>
<div class="clear" style="clear: inline-end; width: 20px; height: 50px"></div>
</span>
</div>