“Décoration de texte HTML” Réponses codées

Décoration de texte 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

Comment souligner la police dans CSS

h3 {
  text-decoration: underline;
}
Dark Dunlin

texte-décoration

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

texte-décoration

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

Réponses similaires à “Décoration de texte HTML”

Questions similaires à “Décoration de texte HTML”

Plus de réponses similaires à “Décoration de texte HTML” dans HTML

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code