CSS中如何讓元素隱藏?
在CSS中,讓元素隱藏(指屏幕范圍內(nèi)肉眼不可見(jiàn))的方法很多,有的占據(jù)空間,有的不占據(jù)空間;有的可以響應(yīng)點(diǎn)擊,有的不能響應(yīng)點(diǎn)擊。下面一個(gè)個(gè)列出,選一個(gè)適合你的
{ display: none; /* 不占據(jù)空間,無(wú)法點(diǎn)擊 */ }
{ visibility: hidden; /* 占據(jù)空間,無(wú)法點(diǎn)擊 */ }
{ position: absolute; top: -999em; /* 不占據(jù)空間,無(wú)法點(diǎn)擊 */ }
{ position: relative; top: -999em; /* 占據(jù)空間,無(wú)法點(diǎn)擊 */ }
{ position: absolute; visibility: hidden; /* 不占據(jù)空間,無(wú)法點(diǎn)擊 */ }
{ height: 0; overflow: hidden; /* 不占據(jù)空間,無(wú)法點(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ù)空間。都無(wú)法點(diǎn)擊 */
}
{
position: absolute;
zoom: 0.001;
-moz-transform: scale(0);
-webkit-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
/* 不占據(jù)空間,無(wú)法點(diǎn)擊 */
}
關(guān)鍵詞:CSS
閱讀本文后您有什么感想? 已有 人給出評(píng)價(jià)!
- 105
- 281
- 72
- 448
- 134
- 71