Accessibility/SEO Friendly CSS Hiding

Written by on July 28, 2011 in Uncategorized - No comments
#content {
    position: absolute;
    left: -9999px;
}

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

 

Leave a Comment