开发者

What purpose does overflow: hidden; serve?

开发者 https://www.devze.com 2023-04-10 06:53 出处:网络
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.

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 center
  • overflow:hidden prevents scrollbars from appearing
  • width:980px sets the width of the element to be 980px.
  • z-index:10 causes the element to stay on top of elements without a defined z-index, *or- elements with a z-index below 10, or elements with a z-index of 10, but defined in before the current element
  • heigh:50px - a height of 50px.


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

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号