“Comment mettre en évidence le texte dans CSS” Réponses codées

Pilt forte du texte 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

Comment mettre en évidence tout texte dans HTML et 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

Comment mettre en évidence le texte dans CSS

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

Réponses similaires à “Comment mettre en évidence le texte dans CSS”

Questions similaires à “Comment mettre en évidence le texte dans CSS”

Plus de réponses similaires à “Comment mettre en évidence le texte dans CSS” dans CSS

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code