“Cómo resaltar el texto en CSS” Código de respuesta

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

Cómo resaltar cualquier texto en HTML y CSS

<!DOCTYPE html>
<html lang="en">
<head>
    <title>How to highlight any text in html</title>
</head>
<body>
    <p style="color: black;"><mark style="background-color: yellow;">Bharath Matha Ki Jai</mark></p>
</body>
</html>
Disturbed Dugong

Cómo resaltar el texto en CSS

<body>
<p>The Math test is on <mark>Friday</mark>.</p>
</body>
Vivacious Vole

Respuestas similares a “Cómo resaltar el texto en CSS”

Preguntas similares a “Cómo resaltar el texto en CSS”

Más respuestas relacionadas con “Cómo resaltar el texto en CSS” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código