CSS display:none and visibility:hidden

前端 未结 3 419
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-19 03:07

I have a div that I use to display alerts when needed.

If I want to close it after a while can I use display:none or should I use display:none as well as visibility:

3条回答
  •  萌比男神i
    2020-12-19 03:29

    Depends. If you need the space to be left blank, that is, the space won't be taken up by other elements below or around it, you'll need visibility: hidden. Otherwise, use display: none, which will allow other elements to move into the element's place.

    There's no reason to use both.

提交回复
热议问题