Search code examples
htmlcsscss-tables

Right align Text in table cell with CSS


Site: http://bit . ly/1qbtSEN

Well, I've tried every CSS selector combo I can think of, and I still cannot get only the prices column text to right align in the table cell. I can right align the table td but that also right aligns the text in the size column. . Any help with the correct selector would be fantastic.


Solution

  • table td:nth-child(2) {
        text-align: right;
    }