“Как подчеркнуть текст в CSS” Ответ

проходить в 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

Подчеркнуть текст в HTML

<!-- Using 'u' tag we can draw underline below the text in HTML -->
<p>Hello all <u>Welcome here !!!</u></p>
Ankur

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

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

/* Using 'text-decoration' property with 'underline' value. we can draw underline below the text using css */
<style>
p {
  text-decoration: underline;
}
</style>
<p>Hello all Welcome here !!!</p>
Ankur

Ответы похожие на “Как подчеркнуть текст в CSS”

Вопросы похожие на “Как подчеркнуть текст в CSS”

Больше похожих ответов на “Как подчеркнуть текст в CSS” по CSS

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

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