How to align items in a to the right

前端 未结 3 1391
萌比男神i
萌比男神i 2020-12-01 17:03

How would I align everything in my below to the far right?

3条回答
  •  攒了一身酷
    2020-12-01 17:28

    A little late, but might help someone, as it was what I needed...

    If the alignment is not limited to this specific table, but rather the default format for all table cells, then just add this to your CSS file:

    td {
        text-align: right;
    }
    

    Then, all elements, including those generated by JSF, will be formatted that way.

提交回复
热议问题