Vertical-align=bottom on image + text

sy195

New Member
I have a table containing a set of elements. Because of the variable img size, i set a fixed height, and because of the possible overflowing of the text, the text-overflow:ellipsis, but I can't get the image+text on the bottom of the space available
immaginescr.png
\[code\]<div class="game"> <a href="http://stackoverflow.com/questions/14053046/url"><img src="http://stackoverflow.com/questions/14053046/(img src)"></a> <div class="gamedescription">-Metal Gear Solid<br>-PlayStation</div></div>.game { width: 110px; padding: 5px; border: 2px solid #8F8F8F; float: left; height: 200px;}.gamedescription { text-overflow: ellipsis; overflow: hidden; white-space: nowrap; display: block;}\[/code\]What I'm missing?
 
Back
Top