0
votes

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.

2
float right on span works..neno
Can you specify which browsers you need to support?Huangism

2 Answers

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

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.