Hi,
How can I put an <img> next to a <div> so the image vertically aligns in the middle?
I know how to do it using a table:Code:<img src="http://devcentral.f5.com/weblogs/images/comment-icon.gif"><div style="font:10pt Arial;padding:5px;background-color:#ccc;"><span style="float:right">No. 1</span><span style="font-weight:bold;padding-right:10px">John Doe</span><span style="color:#808080">11/14/2010 3:23:44</span></div>
But I wonder if I could do it without a table.Code:<table style="font:10pt Arial"> <tr> <td style="vertical-align:middle"><img src="http://devcentral.f5.com/weblogs/images/comment-icon.gif"></td> <td style="width:100%"> <div style="padding:5px;background-color:#ccc;border-top:1px solid #DEDEDE"><span style="float:right">No. 1</span><span style="font-weight:bold;padding-right:10px">John Doe</span><span style="color:#808080">11/14/2010 3:23:44</span></div> </td> </tr> </table>
Thanks in advance!
Rain Lover


Reply With Quote
Bookmarks