align text to the top of the div

madness

New Member
Hi all on my page here: http://www.gamingonlinux.com/sales/ i want to align text in the added, price, savings and provider to the top, how would I go about that?Here is the html for the columns:\[code\]<div class="row"> <div class="left"> {:screenshot} {:info} </div> <div class="date-column"> {:date} </div> <div class="price-column"> {:price} </div> <div class="middle"> {:savings} </div> <div class="right"> {:provider} </div></div>\[/code\]And their css:\[code\].left{ display: table-cell; padding: 14px;}.price-column{ display: table-cell; padding: 14px; width: 150px;}.date-column{ display: table-cell; padding: 14px; width: 150px;}.middle{ display: table-cell; width: 75px; padding: 14px;}.right{ display: table-cell; width: 155px; padding: 14px;}\[/code\]Inside the "left" div the screenshot and name are inside floated left and right spans.
 
Top