Reputation: 1531
I want to align images on left and <h> and <p> text on right next to it like this:
<h>
<p>
What is the best way to do this so it will work best for responsive design as well ?
http://jsfiddle.net/kfV7F/
Upvotes: 2
Views: 2307
Reputation: 1691
img { width:200px; height:200px border:1px solid; vertical-align:middle; float:left; } span:after { clear:both; content:""; display:block; }
jsfiddle
after text you must clear float
float
Upvotes: 3