“Cara menyorot teks di CSS” Kode Jawaban

Sorotan teks 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

Cara menyorot teks apa pun di HTML dan 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

Cara menyorot teks di CSS

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

Jawaban yang mirip dengan “Cara menyorot teks di CSS”

Pertanyaan yang mirip dengan “Cara menyorot teks di CSS”

Lebih banyak jawaban terkait untuk “Cara menyorot teks di CSS” di CSS

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya