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~~
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.