Reputation: 35
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
Reputation: 5392
Put a class on your td
with text-align: right;
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