How to hide the border for specified rows of a table?

前端 未结 4 568
清酒与你
清酒与你 2021-02-06 21:32

I want to hide the border for a specific rows of a table.How to do it?
Any Idea?
Sample code is Highly Appreciated.

4条回答
  •  余生分开走
    2021-02-06 22:23

    I use this with good results:

    border-style:hidden;
    

    It also works for:

    border-right-style:hidden; /*if you want to hide just a border on a cell*/
    

    Example:

    
    
    11 12 13
    21 22 23
    31 32 33

    Here is the result:

提交回复
热议问题