Accessibility/SEO Friendly CSS Hiding
.screen-reader-text {
position: absolute;
top: -9999px;
left: -9999px;
}
This class can remove an item from the page, taking it out of flow and doesn’t cause overflow scrolling.
It’s better than display: none;
or even visibility: hidden;
when the goal …