“Comment souligner le texte dans CSS” Réponses codées

se répandre dans CSS

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

CSS StrikethRough HTML Text

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

Comment souligner le texte dans CSS

h3 {
  text-decoration: underline;
}
Dark Dunlin

souligner le texte en html

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

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

souligner le texte à l'aide de 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

Réponses similaires à “Comment souligner le texte dans CSS”

Questions similaires à “Comment souligner le texte dans CSS”

Plus de réponses similaires à “Comment souligner le texte dans CSS” dans CSS

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code