Better way to right align text in HTML Table

前端 未结 11 2082
无人及你
无人及你 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-04 23:55

    Use jquery to apply class to all tr unobtrusively.

    $(”table td”).addClass(”right-align-class″);

    Use enhanced filters on td in case you want to select a particular td.

    See jquery

提交回复
热议问题