Ejemplo 1: hcss cambia el color de resaltado
::selection {
background: #ffb7b7; /* WebKit/Blink Browsers */
}
::-moz-selection {
background: #ffb7b7; /* Gecko Browsers */
}
Ejemplo 2: CSS de color de selección personalizada
::selection {
color: #000000;
background-color: red;
}
/* for firefox */
::moz-selection {
color: #000000;
background-color: red;
}
Ejemplo 3: cambiar el color de resaltado html
::-moz-selection { /* Code for Firefox */
color: red;
background: yellow;
}
::selection {
color: red;
background: yellow;
}
Ejemplo 4: resaltado de texto 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*/
}
Ejemplo 5: css color seleccionado
::selection {
background-color: #222;
color: white;
}
Ejemplo 6: como resaltar texto en CSS
<body>
<p>The Math test is on <mark>Friday</mark>.</p>
</body>
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)