How do you create a hidden div that doesn't create a line break or horizontal space?

后端 未结 10 1209
故里飘歌
故里飘歌 2020-11-29 15:18

I want to have a hidden checkbox that doesn\'t take up any space on the screen.

If I have this:


      
10条回答
  •  温柔的废话
    2020-11-29 15:28

    To prevent the checkbox from taking up any space without removing it from the DOM, use hidden.

    To prevent the checkbox from taking up any space and also removing it from the DOM, use display: none.

提交回复
热议问题