What purpose does overflow: hidden; serve?
I have a web page with a header area in the middle. Elements are then part of the header. Can someone explain what overflow: hidden;
does here. I don't understand why I need it or what it does.
#hdr_m开发者_运维百科dl {
margin: 0 auto;
overflow: hidden;
width: 980px;
z-index: 10;
height: 50px;
}
overflow:hidden
prevents scrollbars from showing up, even when they're necessary.
Explanation of your CSS:
margin: 0 auto
horizontally aligns the element at the centeroverflow:hidden
prevents scrollbars from appearingwidth:980px
sets the width of the element to be980px
.z-index:10
causes the element to stay on top of elements without a definedz-index
, *or- elements with az-index
below 10, or elements with az-index
of 10, but defined in before the current elementheigh:50px
- a height of50px
.
When overflow: hidden
is added to the container element, it hides its children that don’t fit in the container.
Example:
.overflowhidden {
background: green;
width: 10rem;
height: 10rem;
overflow: hidden;
}
<div class="overflowhidden">
This container has the style overflow:hidden. Text that does not fit becomes hidden. This is a very long sentence of text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text even more text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text this is the end of the sentence.
</div>
If the content in #hdrPmdl was to spill over 50px it will not allow the browser to insert scrollbars into the DIV. If the DIV doesnt contain dynamic content and the size will always remain static then it is probably not needed as the content will no be > 50px
overflow
specifies what a browser should do, when content is bigger than block dimensions. overflow:hidden
means 'hide it and preserve initial block dimensions'.
if you use overflow hidden for a particular content than the overflow is clipped for this content, and the rest of the content will be invisible. for clear the matter visit w3school http://www.w3schools.com/cssref/pr_pos_overflow.asp
Explanation of the overflow
property: CSS overflow Property
Interactive example of the overflow
property: Play it
精彩评论