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~~
ringa_lee2017-05-18 10:57:58
.is-hidden {
display: initial!important;
}
But if you do this and set this element somewhere else display
会有隐患。既然叫 is-hidden
why not hide it.
伊谢尔伦2017-05-18 10:57:58
After some research, there is really no good way.
Maybe only display:inline-block
has the best compatibility.