Better way to right align text in HTML Table

前端 未结 11 2175
无人及你
无人及你 2021-02-04 23:40

I have an HTML table with large number of rows, and I need to right align one column.

I know the following ways,

..

        
11条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-05 00:15

    This doesn't work in IE6, which may be an issue, but it'll work in IE7+ and Firefox, Safari etc. It'll align the 3rd column right and all of the subsequent columns left.

    td + td + td { text-align: right; }
    td + td + td + td { text-align: left; }
    

提交回复
热议问题