blob: 9c87b8c6e4674389ec2a69e8d80f1b588e0ffca0 [file] [log] [blame] [edit]
<style>
.container {
width: 50px;
height: 50px;
background-color: cyan;
}
.float {
float: left;
width: 50px;
height: 10px;
background-color: green;
}
img {
width: 10px;
height: 20px;
background-color: blue;
}
</style>
<div class=container style="text-indent: -50px"><div class=float></div><img></div>
<div class=container style="text-indent: -10px"><div class=float></div><img></div>
<div class=container style="text-indent: 0px"><div class=float></div><img></div>
<div class=container style="text-indent: -50px"><div style="float: right" class=float></div><img></div>
<div class=container style="text-indent: -10px"><div style="float: right" class=float></div><img></div>
<div class=container style="text-indent: 0px"><div style="float: right" class=float></div><img></div>