Re: [csswg-drafts] [css-display] create a display property value for visually hiding an element while making it available for AT

@thierryk I see. Then `@media not speech` is also needed:

```CSS
.hidden-visually {
    position: absolute;
    left: -5000px;
}

@media not speech {
    .hidden-visually {
        display: none;
    }
}
```
But in such a case, I would agree with @AmeliaBR that it is too many 
devs copy & paste for a "screen reader only" purpose. A simpler way 
would be preferable.

-- 
GitHub Notification of comment by Ian-Y
Please view or discuss this issue at 
https://github.com/w3c/csswg-drafts/issues/560#issuecomment-276707671 
using your GitHub account

Received on Wednesday, 1 February 2017 16:36:34 UTC