Himas Rafeek
Posted on: 3 years ago
CSS

Accessibility/SEO Friendly CSS Hiding

Removes an item from the page, without affecting page flow or causing scrollbars. Much better than display: none; or even visibility: hidden;


                                          #content {
    position: absolute;
    top: -9999px;
    left: -9999px;
}