JS FIDDLE and here is the code I have come up with...I am looking for assistance in achieving a layout similar to the second one without relying on FLOAT
HTML
<div class="img-container">
<div class="img"></div>Cristiano Ronaldo</div>
<br>
<br>
<br>I want this but without using float, can anyone help??
<br>
<br>
<br>
<div class="img-container">
<div class="img" style="float:left;"></div>Cristiano Ronaldo</div>
CSS
div.img {
height:60px;
width:60px;
border-radius:5px;
background:brown;
display:inline-block;
margin-right:5px;
}