Better way to right align text in HTML Table

前端 未结 11 2242
无人及你
无人及你 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:52

    The current draft of CSS Selectors Level 4 specifies structural selectors for grids. If implemented, we will be able to do things like:

    th.price,
    th.price || td {
        text-align: right;
    }
    

    Of course, that doesn't help us today -- the other answers here offer enough practical advice for that.

提交回复
热议问题