“CSS Текстовое декорация” Ответ

CSS подчеркивает цвет

u
{
	text-decoration: underline;
  	text-decoration-color: red;
}
example of use: (in html)

<p>The word <u>CAT</u>, is underlined </p>
Lazurite

проходить в CSS

x {
  text-decoration: line-through;
}
Ugly Unicorn

CSS StriketHetrough HTML текст

style="text-decoration: line-through;"
Poised Penguin

Как подчеркнуть шрифт в CSS

h3 {
  text-decoration: underline;
}
Dark Dunlin

Текстовое декорация

a{
    text-decoration:underline; // default in A tag
    text-decoration:none;
    text-decoration: overline;
    text-decoration: line-through;
    text-decoration: underline overline;
}

//My youtube:'https://www.youtube.com/HasibulIslambd' 
developerhasib

CSS Текстовое декорация

/* Keyword values */
text-decoration: underline;
text-decoration: underline dotted;
text-decoration: underline dotted blue;
text-decoration: underline overline;
text-decoration: blue wavy underline;
text-decoration: line-through;
Fragile Flamingo

Ответы похожие на “CSS Текстовое декорация”

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

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