Como sublinhar a fonte no CSS
h3 {
text-decoration: underline;
}
Dark Dunlin
h3 {
text-decoration: underline;
}
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'
/* 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>
text-decoration: underline;
text-decoration: overline red;
text-decoration: none;
/* Global values */
text-decoration: inherit;
text-decoration: initial;
text-decoration: revert;
text-decoration: unset;