日韩高清在线免费不卡性生活毛片,亚洲av综合第一页,亚洲美女被操,一级无遮挡理论片

綠色資源網(wǎng):您身邊最放心的安全下載站! 最新軟件|熱門排行|軟件分類|軟件專題|論壇轉(zhuǎn)帖|廠商大全

綠色資源網(wǎng)

技術(shù)教程
您的位置:首頁網(wǎng)頁設(shè)計(jì)HTML/CSS → CSS中如何讓元素隱藏?

CSS中如何讓元素隱藏?

我要評(píng)論 2012/05/31 14:45:20 來源:綠色資源網(wǎng) 編輯:downcc.com [ ] 評(píng)論:0 點(diǎn)擊:3709次

在CSS中,讓元素隱藏(指屏幕范圍內(nèi)肉眼不可見)的方法很多,有的占據(jù)空間,有的不占據(jù)空間;有的可以響應(yīng)點(diǎn)擊,有的不能響應(yīng)點(diǎn)擊。下面一個(gè)個(gè)列出,選一個(gè)適合你的

{ display: none; /* 不占據(jù)空間,無法點(diǎn)擊 */ }
{ visibility: hidden; /* 占據(jù)空間,無法點(diǎn)擊 */ }
{ position: absolute; top: -999em; /* 不占據(jù)空間,無法點(diǎn)擊 */ }
{ position: relative; top: -999em; /* 占據(jù)空間,無法點(diǎn)擊 */ }
{ position: absolute; visibility: hidden; /* 不占據(jù)空間,無法點(diǎn)擊 */ }
{ height: 0; overflow: hidden; /* 不占據(jù)空間,無法點(diǎn)擊 */ }
{ opacity: 0; filter:Alpha(opacity=0); /* 占據(jù)空間,可以點(diǎn)擊 */ }
{ position: absolute; opacity: 0; filter:Alpha(opacity=0); /* 不占據(jù)空間,可以點(diǎn)擊 */ }
{
zoom: 0.001;
-moz-transform: scale(0);
-webkit-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
/* IE6/IE7/IE9不占據(jù)空間,IE8/FireFox/Chrome/Opera占據(jù)空間。都無法點(diǎn)擊 */
}
{
position: absolute;
zoom: 0.001;
-moz-transform: scale(0);
-webkit-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
/* 不占據(jù)空間,無法點(diǎn)擊 */
}

關(guān)鍵詞:CSS

閱讀本文后您有什么感想? 已有 人給出評(píng)價(jià)!

  • 105 歡迎喜歡
  • 281 白癡
  • 72 拜托
  • 448 哇
  • 134 加油
  • 71 鄙視