html - Aligning text next to an image vertically -
i trying build blog scratch , having trouble aligning text next top of image. the text right of image centered. how align text top?
html
<img class="left" src="images/test.jpg" height="153" width="186" align="left"> <p class="right">blah blah blah</p> <div style="clear: both"></div>
css
.left{ display:inline-block; clear:left; } .right{ display:inline-block; vertical-align: top; clear:right; }
try adding , let me know if helps:
.left {display:block;float:left;} .right {float:left;margin-left:20px;}
Comments
Post a Comment