Search code examples
htmlcsscss-tables

Keeping text at center bottom in a cell of table


I want to place text at center and at the bottom of the cell in table. How can I do this?

This is what I want:

enter image description here


Solution

  • CSS:

    td {vertical-align:bottom;text-align:center;}
    

    example: http://jsfiddle.net/vKPG8/