CSS подчеркивает цвет
u
{
text-decoration: underline;
text-decoration-color: red;
}
example of use: (in html)
<p>The word <u>CAT</u>, is underlined </p>
Lazurite
u
{
text-decoration: underline;
text-decoration-color: red;
}
example of use: (in html)
<p>The word <u>CAT</u>, is underlined </p>
.class {
color: white;
}
p{
color: White;
}
body {
background-color:rgb(130, 50, 29);
}
.YourClass {
color: #ff0000;
}
body {
color: blue;
}
h1 {
color: green;
}