You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like we may be able to fix this in CSS using visibility. It will:
behave just like display: none if you set visibility: hidden as far as a11y, effectively hiding it the same way
visibility: hidden will leave the element's size/layout in the page - in case we need that, I remember that we needed that for a height calculation?
you can set a child of something with visibility: hidden to visibility: visible and it will show that child. something awesome that you can do that you can't with display: none
you can transition or animate the visibility property, so adding/removing it could be part of whatever transition/animation we have that slides menus in and out
The text was updated successfully, but these errors were encountered:
re: patternfly/patternfly-react#7756
It looks like we may be able to fix this in CSS using
visibility
. It will:display: none
if you setvisibility: hidden
as far as a11y, effectively hiding it the same wayvisibility: hidden
will leave the element's size/layout in the page - in case we need that, I remember that we needed that for a height calculation?visibility: hidden
tovisibility: visible
and it will show that child. something awesome that you can do that you can't withdisplay: none
visibility
property, so adding/removing it could be part of whatever transition/animation we have that slides menus in and outThe text was updated successfully, but these errors were encountered: