Hi,
Here's the effect I can create with a a table:
I wonder how I can use <div> instead of <table> tag to get the same result. Ideally I'd like to use the image as a background image because the icon is used many times per page so calling it from a background image reduces the number of http requests.Code:<table style="font:10pt Arial">
<tr>
<td style="vertical-align:middle"><img src="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>
Many thanks in advance!

