/ Published in: CSS
Removes an item from the page, without affecting page flow or causing scrollbars. Much better than display: none; or even visibility: hidden;
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#content { position: absolute; top: -9999px; left: -9999px; }
URL: http://simply-tutorial.com/blog/2015/01/01/accessibility-slash-seo-friendly-css-hiding/