I'm trying to align an image with text in a table such that the image is aligned to the bottom of the text.
The current code I have for the table is: <table class="table table-striped"> > <thead> > <tr> > <th><h4><img src="image.png" />Title1</h4></th> > <th><h4><img src="image2.png" />Title2</h4></th> > </tr> > </thead> > <tbody> > <tr> > <td>Subtitle1</td> > <td>Subtitle2</td> > </tr> > <tr> > <td>Subtitle1</td> > <td>Subtitle2</td> > </tr> > </tbody> > </table> > > It currently looks like this: http://i.stack.imgur.com/gm319.png How do I make the image align to the bottom of the text? Thanks! :)
