When and How to Visually Hide Content


/ Published in: CSS
Save to your folder(s)

Better way to hide content whilst still making it available to


Copy this code and paste it in your HTML
  1. .hidden {
  2. position: absolute;
  3. left: -9999em;
  4. top: auto;
  5. width: 1px;
  6. height: 1px;
  7. overflow: hidden;
  8. }

URL: http://designfestival.com/when-and-how-to-visually-hide-content/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.