“CSS de estilo destacado de estilo” Código de respuesta

CSS de estilo destacado de estilo

/* Now supported by all major browsers */

::selection {
  background-color: #000 /* Selection highight color */
  color: #FFF /* Optional colour change of text that is being selected */
}
Naughty Newt

resaltado de texto de CSS

/*Term: css text highlight*/

/*This uses the element ::selection, which is as far as i
know only supported by Google Chrome so far. This is not
a problem though, since other browsers will simply keep
the regular highliting styles.*/

/*Example*/
::selection {
  background-color: #000; /*Highlight Color*/
  color: #fff; /*Text Color*/
}
niconius

elemento resaltado CSS

.highlight {
    box-shadow: 0 0 0 100000px rgba(0, 0, 0, .8);
}
Ill Ibex

Respuestas similares a “CSS de estilo destacado de estilo”

Preguntas similares a “CSS de estilo destacado de estilo”

Más respuestas relacionadas con “CSS de estilo destacado de estilo” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código