“Dekoracja tekstu HTML” Kod odpowiedzi

Dekoracja tekstu HTML

<p style="text-decoration: none;"> There will be no effects. Default value </p>
<p style="text-decoration: underline;"> Text will be underlined </p>
<p style="text-decoration: overline;"> A line will be drawn over the text </p>
<p style="text-decoration: line-through;"> Text will be strikethrough </p>
Mysterious Monkey

Jak podkreślić czcionkę w CSS

h3 {
  text-decoration: underline;
}
Dark Dunlin

dekoracja tekstu

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

dekoracja tekstu

text-decoration: underline;
text-decoration: overline red;
text-decoration: none;

/* Global values */
text-decoration: inherit;
text-decoration: initial;
text-decoration: revert;
text-decoration: unset;
trevertor23

Odpowiedzi podobne do “Dekoracja tekstu HTML”

Pytania podobne do “Dekoracja tekstu HTML”

Więcej pokrewnych odpowiedzi na “Dekoracja tekstu HTML” w HTML

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu