How to override the same class with scss.
淡淡烟草味
淡淡烟草味 2017-05-18 10:55:58
0
2
814

The source file of a css library introduced reads:
.is-hidden {

display: none!important;

}

And I don’t want to set any style for this class. How should I do it without modifying the source file (I want to extract the personalized configuration)? Please give me some guidance~~

淡淡烟草味
淡淡烟草味

reply all(2)
左手右手慢动作
.is-hidden {
  display: initial!important;
}

But if you do this and set this element somewhere else display 会有隐患。既然叫 is-hidden why not hide it.

伊谢尔伦

After some research, there is really no good way.

Maybe only display:inline-block has the best compatibility.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!