“Subraye el texto usando CSS” Código de respuesta

Cómo subrayar la fuente en CSS

h3 {
  text-decoration: underline;
}
Dark Dunlin

decoración de texto

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

Subraye el texto usando 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

Respuestas similares a “Subraye el texto usando CSS”

Preguntas similares a “Subraye el texto usando CSS”

Más respuestas relacionadas con “Subraye el texto usando CSS” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código