RE: CSS property for visually hiding an element

Following something along the lines of `display: contents` can be a good start.
- https://developer.mozilla.org/en-US/docs/Web/CSS/display
- https://rachelandrew.co.uk/archives/2016/01/29/vanishing-boxes-with-display-contents/ 

De: Una Kravets
Enviado: lunes, 3 de abril de 2017 13:36
Para: Oliver Joseph Ash
CC: Brian Kardell; Philip Taylor; www-style@w3.org
Asunto: Re: CSS property for visually hiding an element



visibility: hidden also hides it from the accessibility tree. Undoing that now would almost certainly cause more harm than good - as far as I can see, it would require a new property.


I think a display property is what you’re thinking of (akin to `display: none`, but `display: screen-reader-only`)

Received on Monday, 3 April 2017 16:46:39 UTC