“CSS текстовое украшение” Ответ

CSS смелый текст

.text {
	font-weight: bold;
}
k-vernooy

проходить в 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 текстовое украшение

h1 {
  text-decoration-line: overline;
}

h2 {
  text-decoration-line: line-through;
}

h3 {
  text-decoration-line: underline;
}

p {
  text-decoration-line: overline underline;
}
naly moslih

Ответы похожие на “CSS текстовое украшение”

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

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