I have Products which has images in maximum 100px size. It means: width is 100px, height is small than 100px, or height is 100px, width is small than 100px. One side is always 100px.
I need to show product image on the right, name and price on the bottom left of that image. it is structure in different cases what I need:

I tried this:
<table style="width: 100%;">
<tbody>
<tr>
<td style="height: 100px; ">
<a href="@Url.Action("Details", "Product", new { id = Model.Id })" >
<img src="@Url.Content("~/Images/" + Model.Image)" style="float:right;" alt="" />
<b style="margin-top: 15%; float: right;">
<label>@Model.Price</label>
<br />
<label>@Model.Name</label>
</b>
</a>
</td>
</tr>
</tbody>
</table>
But this work only for 100px height. margin-top: 15%; is static. When image height is 50px, 60px etc.. it should change.
How can I do this? its not important to use a table. You can advice any elements to do this.
EDIT:
I added one more <td> side by side and put price and name into first <td> and image into second <td>.
Now I need to set <td> width like inner element's size. If image width in is 90px, to set <td> width to 90px.Is it possible?
labeltag is for. – cimmanon Feb 16 at 14:40