Skip to content

Instantly share code, notes, and snippets.

@lucianobarauna
Last active May 28, 2018 18:36
Show Gist options
  • Select an option

  • Save lucianobarauna/fb0114d3bf861591e60b7abc154791f0 to your computer and use it in GitHub Desktop.

Select an option

Save lucianobarauna/fb0114d3bf861591e60b7abc154791f0 to your computer and use it in GitHub Desktop.
Arquivo que contém técnicas css voltadas para acessibilidade
// Esconde conteúdo visualmente
.super-hidden-content
border: 0
clip: rect(0 0 0 0)
height: 1px
margin: -1px
overflow: hidden
padding: 0
position: absolute
width: 1px
// Mostra texto em leitores de tela
.show-text-acessible {
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
width: 1px;
height: 1px;
display: block;
color: transparent;
position: absolute;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment