So I have two images that I am trying to float, like this:
img{
float:left;
clear:right;
}
<img src='http://img1.imgtn.bdimg.com/it/u=1005212286,2432746147&fm=21&gp=0.jpg' alt=''><br>
<img src='http://img1.imgtn.bdimg.com/it/u=1005212286,2432746147&fm=21&gp=0.jpg' alt=''>
I'm a bit confused as to why the second image is still floating behind the first one. I was expecting it to move to the next line. Does anyone know why this is happening?