visibility:hidden與display:none的區別

admin發表於2017-02-19
visibility:hidden與display:none雖然都可以將物件隱藏,但是兩者的區別還是巨大的,下面介紹一下它們兩個到底有什麼區別。

下面先看一段程式碼: 

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
.top{
  border:1px solid red;
  width:200px;
  height:320px;
  padding-left:20px;
}
.bottom{
  border:1px solid blue;
  width:200px;
  height:320px;
  padding-left:20px;
}
.first{
  border:1px solid green;
  width:150px;
  height:150px;
}
.second{
  border:1px solid blue;
  width:150px;
  height:150px;
}
.top .first{display:none;}
.bottom .first{visibility:hidden;}
</style>
</head>
<body>
<div class="top">
  <div class="first"></div>
  <div class="second"></div>
</div>
<div class="bottom">
  <div class="first"></div>
  <div class="second"></div>
</div>
</body>
</html>

從上面程式碼的表現可以看出,使用display:none以後,物件真的是消失了,它的空間被其他物件所佔據,而使用visibility:hidden的物件僅僅是在視覺上看不到了,它的物理位置還是被保留的。

相關文章