This is very simple and newbie question. I just started to learn basic HTML, and when trying to place 3 divs together in different order, I got stucked. I need 3 DIV elements: The first one should go to the left and it is DIV for thumb. The second one should go to the right side, having padding-left option set at 5px, then the third div should be placed below the second div, and the height of both divs should be matching the first div thumb size (50x50px).
Here is my code, that I was trying to create, but still no success.
<div style="width: 500px;">
<div style="float: left;">
<img src="http://www.avatarsdb.com/avatars/fire_01.gif" width="50px" height="50px">
</div>
<div style="padding-left:10px; width:100px;">top</div>
<div style="float: left; padding-left:10px; width:100px;">bottom</div>
</div>
I know how to solve it with Table, but with DIV I was not able to solve it myself being super new.