Home>Article>Web Front-end> What does display:none mean?
"display:none" means to set the element to be invisible and not even generate a box model. It is generally used for hidden elements that do not take up space. The display attribute specifies the type of box that the element should generate. When its value is "none", it can be specified that the element does not generate a box. Hiding the element can be understood as deleting the element from the page.
The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.
display:none means:
"display:none
" means that the set element is invisible and connected The box model is not generated and is generally used for hidden elements that do not take up space.
The "display:none
" style truly hides the element according to the meaning of the word.
display
The attribute specifies the type of box that the element should generate. When its value is "none
", it can be specified that the element does not generate a box.
Using the display attribute, hidden elements do not occupy any space. Not only that, once display is set to none, any direct user interaction on the element will not be effective.
Use "display:none
" to hide the element without occupying space, so dynamically changing this attribute will cause rearrangement (change the page layout), which can be understood as in the page It is the same as deleting the element; it will not be inherited by descendants, but its descendants will not be displayed. After all, they are all hidden together.
Let’s take a look at the usage of display:none.
需要隐藏的区域
If the display:none attribute value is set, the effect will be as shown in the figure below: the area that needs to be hidden will be hidden.
Recommended tutorial: "HTML Tutorial"
The above is the detailed content of What does display:none mean?. For more information, please follow other related articles on the PHP Chinese website!