“Как изменить цвет метки маркировки в HTML” Ответ

Изменить цвет маркировки в HTML

 /*Apply to all mark tags*/
mark {
  background-color: blue; /*Add your desired color*/
}
/*Apply it to a class*/
.mark { 
  background-color: blue; /*Add your desired color*/
}
/*Apply it to an ID*/
#mark {
  background-color: blue; /*Add your desired color*/
}
Coder.html

Как изменить цвет метки маркировки в HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <p>Here is the <mark style="color: white; background-color:green"> searched query </mark> </p>
</body>
</html>
Aggressive Albatross

Как изменить цвет метки маркировки в HTML

<body>
<p>The Math test is on <mark style="color: red;">Friday</mark>.</p>
</body>
Aggressive Albatross

Как выделить текст в CSS

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

Ответы похожие на “Как изменить цвет метки маркировки в HTML”

Вопросы похожие на “Как изменить цвет метки маркировки в HTML”

Больше похожих ответов на “Как изменить цвет метки маркировки в HTML” по HTML

Смотреть популярные ответы по языку

Смотреть другие языки программирования