What is the difference between overflow:hidden and display:none?
|
|
|
|
|
|
|
Example:
If text in the block with this class is bigger (longer) than what this little box can display, the excess will be just hidden. You will see the start of the text only.
Note you have also |
||
|
|
|
|
By default, HTML elements are as tall as required to contain their content. If you give an HTML element a fixed height, it may not be big enough to contain its content. So, for example, if you had a paragraph with a fixed height and a blue background:
The text within the paragraph would extend beyond the bottom edge of the paragraph. The
Then you wouldn’t see any of the text beyond the bottom edge of the paragraph. It would be clipped to the fixed height of the paragraph.
|
||
|
|
|
|
overflow: hidden - hides the overflow of the content, in contrast with overflow: auto who shows scrollbars on a fixed sized div where it's inner content is larger than it's size display: none - hides an element and it completely doesn't participant in content layout P.S. there is no difference between the two, they are completely unrelated |
||
|
|
|
|
Simple example of overflow: hidden http://www.w3schools.com/Css/tryit.asp?filename=trycss_pos_overflow_hidden If you edit the CCS on that page, you can see the difference between the overflow attributes (visible | hidden | scroll | auto ) - and if you add display: none to the css, you will see the whole content block is disappears. Basically it's a way of controlling layout and element "flow" - if you are allowing user input (from a CMS field say), to render in a fixed sized block, you can adjust the overflow attribute to stop the box increasing in size and therefore breaking the layout of the page. (conversely, display: none prevents the element from displaying and therfore the entire page re-adjusts) |
||
|
|
|
|
display:none means that the the tag in question will not appear on the page at all (although you can still interact with it through the dom). There will be no space allocated for it between the other tags. Overflow hidden means that the tag is rendered with a certain height and any text etc which would cause the tag to expand to render it will not display. I think what you mean to ask is visibility:hidden. This means that unlike display none, the tag is not visible, but space is allocated for it on the page. so for example
display:none would be: test | | test visibility:hidden would be: test | | test In visibility:hidden the tag is rendered, it just isn't seen on the page. |
|||
|
|
|
|
|
|||
|
|
Let's say you have a You then put a whole bunch of text into it, such as it overflows the div. If you use
In order to make the |
||
|
|
|
|
Overflow:hidden just says if text flows outside of this element the scrollbars don't show. display:none says the element is not shown. |
||
|
|
