HTML table column align right

Viewed 47240

I have a table with 3 columns. I want that the third column is aligned to the right of the upper element and the other 2 columns to the left, like this:

(left column) (middle column)                                      (right column)

Is there a way to do this via CSS or something?

3 Answers

<td style="text-align:right;">data1</td>

Related