Remove a link that has become dangerous

While it may have originally been innocuous, it is now leading to a scam click site
This commit is contained in:
Robert Mennell
2019-10-20 22:14:27 -07:00
committed by GitHub
parent 65942ada58
commit 83fbb8ca74

View File

@ -6,7 +6,7 @@ tags: layout, visual
A bulletproof way to completely hide an element visually and positionally in the DOM while still allowing it to be accessed by JavaScript and readable by screen readers. This method is very useful for accessibility ([ADA](https://adata.org/learn-about-ada)) development when more context is needed for visually-impaired users. As an alternative to `display: none` which is not readable by screen readers or `visibility: hidden` which takes up physical space in the DOM.
```html
<a class="button" href="http://pantswebsite.com">
<a class="button" href="https://google.com">
Learn More <span class="offscreen"> about pants</span>
</a>
```