A powerful cross-platform UI toolkit for building native-quality iOS, Android, and Progressive Web Apps with HTML, CSS, and JavaScript.
refactor(core): remove global hidden attribute (#25829)
resolves #17583
BREAKING CHANGE:
The `[hidden]` attribute has been removed from Ionic's global stylesheet. The `[hidden]` attribute can continue to be used, but developers will get the [native `hidden` implementation](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/hidden) instead. The main difference is that the native implementation is easier to override using `display` than Ionic's implementation.
Developers can add the following CSS to their global stylesheet if they need the old behavior:
```css
[hidden] {
display: none !important;
}
``` L
Liam DeBeasi committed
f5a6b5a4c434167cafd9060911ccbfda2a89734c
Parent: 9e611f5
Committed by GitHub <noreply@github.com>
on 8/26/2022, 1:34:41 PM