how to revert back to normal after display:none for table row

前端 未结 9 1037
迷失自我
迷失自我 2020-12-11 14:42

Basically, I have a table. Onload, I set each row of the table to display:none since I have a lot of javascript processing to be done and I don\'t want user to

9条回答
  •  感动是毒
    2020-12-11 15:08

    Use visibility instead of display for your case.

    visibility: hidden;

    after load

    visibility: visible;

    find out more here

提交回复
热议问题