Can I accomplish this without touching html?
html...
<div>
<img src="http://i50.tinypic.com/1zey0j8.gif" alt="" />WALLPAPER
<span>some paragraph here
some paragraph here /*this should not go below the image*/
some paragraph here
some paragraph here
</span>
</div>
csss...
div{width: 200px;}
img{float: left; width: 50px; height: 50px;}
span{display: block;}
Edit
Kaloyan Ivanov has given me a best answer. But I would like to know how overflow hidden do the trick?