This content originally appeared on Jake Archibald's blog and was authored by Jake Archibald's blog
If you set an element to display: none
the browser ignores all of its children, if a child sets itself to display: block
it will remain hidden. This isn't true of visibility
.
Serious?
Serious.
html.show-only-the-button { visibility: hidden; } html.show-only-the-button .the-button { visibility: visible; }
So says the spec:
hidden: The generated box is invisible (fully transparent, nothing is drawn), but still affects layout. Furthermore, descendants of the element will be visible if they have 'visibility: visible'.
— CSS 2.1
I've found this useful when testing paint-related issues, as you can isolate a particular element without disrupting layout.
Further reading
- Having fun with
<image>
- another spec oddity - Animated line drawing in SVG
This content originally appeared on Jake Archibald's blog and was authored by Jake Archibald's blog
Jake Archibald's blog | Sciencx (2014-04-01T00:00:00+00:00) visibility: visible undoes visibility: hidden. Retrieved from https://www.scien.cx/2014/04/01/visibility-visible-undoes-visibility-hidden/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.