What are the various ways to hide a
?

后端 未结 4 1279
孤独总比滥情好
孤独总比滥情好 2021-01-25 14:40

Right, I am a CSS noob. I am trying to collate the various ways to hide a div.

For example:

display:none;
visibility:hidden;

Are there

4条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-25 15:10

    I have no idea why do you ask question like that, but here is another way to hide an element:

    element.style {
        width: 0px;
        height: 0px;
        overflow: hidden;
    }
    

提交回复
热议问题