码迷,mamicode.com
首页 > 其他好文 > 详细

display:none与visibility:hidden

时间:2015-08-10 13:24:57      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:

主要区别就是

visibility:hidden 时在页面中仍旧占空间,而display:none不占空间。

 

 

display:none
Turns off the display of an element (it has no effect on layout); 
all child elements also have their display turned off. 
不显示该元素(该元素不影响布局,即不占位);所有子元素也不显示。

visibility:hidden
The box is invisible (fully transparent, nothing is drawn), but still affects layout.  Descendants of the element will be visible if they have visibility:visible (this doesn‘t work in IE up to version 7).
该容器不可见(完全透明,不绘制),但仍然影响布局。如果后代(子孙)元素设置了 visibility:visible 样式将会显示。

 

技术分享

display:none与visibility:hidden

标签:

原文地址:http://www.cnblogs.com/rhett-web/p/4717665.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!