Skip to content

Instantly share code, notes, and snippets.

@danilowm
Created May 30, 2012 18:24
Show Gist options
  • Select an option

  • Save danilowm/2838121 to your computer and use it in GitHub Desktop.

Select an option

Save danilowm/2838121 to your computer and use it in GitHub Desktop.
Alterar a cor de seleção de texto
/* VERMELHO */
p.vermelho::selection {
background: #FF0000;
color: #FFF;
}
p.vermelho::-moz-selection {
background: #FF0000;
color: #FFF;
}
p.vermelho::-webkit-selection {
background: #FF0000;
color: #FFF;
}
/* VERDE */
p.verde::selection {
background: #228B22;
color: #FFF;
}
p.verde::-moz-selection {
background: #228B22;
color: #FFF;
}
p.verde::-webkit-selection {
background: #228B22;
color: #FFF;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment