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

前端 未结 4 575
清酒与你
清酒与你 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条回答
  •  猫巷女王i
    2021-02-06 22:30

    You can simply add these lines of codes here to hide a row,

    Either you can write border:0 or border-style:hidden; border: none or it will happen the same thing

    
        
    Firstname Lastname Savings
    Peter Griffin $100
    Lois Griffin $150
    Joe Swanson $300
    Cleveland Brown $250

    running these lines of codes can solve the problem easily

提交回复
热议问题