Difference between display:none and display:hidden
Discuss Difference between display:none and display:hidden in the CSS Help forum on Dev Shed. Difference between display:none and display:hidden Cascading Style Sheets (CSS) forum discussing all levels of CSS, including CSS1, CSS2 and CSS Positioning. CSS provides a robust way of applying standardized design concepts to your web pages.
Posts: 18
Time spent in forums: 4 h 11 m 40 sec
Reputation Power: 0
Difference between display:none and display:hidden
Hi,
I am little bit confused with the css property of style="display:none;" and style="display:hidden;". I think both are doing same work. i want to know the nature of each properties this styles.
Posts: 1,881
Time spent in forums: 1 Month 2 Weeks 2 Days 9 h 36 m 16 sec
Reputation Power: 813
Hi,
display : none completely "removes" the element, while visibility : hidden (I guess that's what you meant) preserves the space that the element would take.