“Como destacar o texto no CSS” Respostas de código

Destaque 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*/
}
niconius

Como destacar qualquer texto em HTML e 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

Como destacar o texto no CSS

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

Respostas semelhantes a “Como destacar o texto no CSS”

Perguntas semelhantes a “Como destacar o texto no CSS”

Mais respostas relacionadas para “Como destacar o texto no CSS” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código