Frank McClung
Frank McClung

Reputation: 35

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.

Upvotes: 0

Views: 146

Answers (2)

speak
speak

Reputation: 5392

Put a class on your td with text-align: right;

enter image description here

Edit: If you're not worried about IE8 compatibility, CroaToa's answer https://stackoverflow.com/a/25002805/1355087 is the selector you want.

Upvotes: 1

CroaToa
CroaToa

Reputation: 910

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

Upvotes: 5

Related Questions