I have my html mark up something like this
<table>
<tr>
<td>
<img width="100" height="140" title="battlefield" alt="battlefield" class="attachment-shop_catalog wp-post-image" src="images/img-1.jpg">
<h3>Battle Field dsvadv dsadhjkba dsakjdbsa</h3>
<span class="price"><del><span class="amount">$ 67.00</span></del> <ins><span class="amount">$ 23.00</span></ins></span>
<a href="#">Add to cart</a>
</td>
<td>
<img width="100" height="140" title="battlefield" alt="battlefield" class="attachment-shop_catalog wp-post-image" src="images/img-2.jpg">
<h3>Battle Field </h3>
<span class="price"><del><span class="amount">$ 67.00</span></del> <ins><span class="amount">$ 23.00</span></ins></span>
<a href="#">Add to cart</a>
</td>
</tr>
</table>
and the css is like this
<style type="text/css">
table tr td {
vertical-align: top;
border-collapse: collapse;
width: 100px;
}
td img {
padding: 10px;
border: 1px solid #ccc;
}
td h3 {
font-size: 12px;
line-height: 22px;
text-align: center;
margin: 0;
}
td span {
display: inline-block;
font-size: 12px;
}
td a {
clear: both;
display: block;
vertical-align: bottom;
margin: 20px 0 0 0;
}
</style>
After this my layout is something like this

but I want my layout should like this

Please help me out.
NOTE
The title which is within <h3>...</h3> text length may be different in different products. So the price should come just below the title and the buttons should come in a straight row ie just bottom of the content just like the second reference image.
………..Live demo…………….
Hi now this is possible throw css as now you can create two div and used to
positionthan it’s possible and define yourtr height 100%now you can write css as like this
Css
HTML
Live demo