“Wie man Text in CSS hervorhebt” Code-Antworten

CSS -Text Highlight

/*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

Wie man einen Text in HTML und CSS hervorhebt

<!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

Wie man Text in CSS hervorhebt

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

Ähnliche Antworten wie “Wie man Text in CSS hervorhebt”

Fragen ähnlich wie “Wie man Text in CSS hervorhebt”

Weitere verwandte Antworten zu “Wie man Text in CSS hervorhebt” auf CSS

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen