HTML hidden attribute overridden by ui class? #1361
-
It seems that the "hidden" attribute is not considered by the browser when a tag has the "ui" class. Examples: Tested in Opera 67 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Yes, it's because any By adding the following small line of CSS code, you should be able to force the hidden-property to gain more respect [hidden] { display:none !important;} |
Beta Was this translation helpful? Give feedback.
Yes, it's because any
ui
element changes thedisplay
css value which itself overrides any existing hidden-propertyBy adding the following small line of CSS code, you should be able to force the hidden-property to gain more respect