Search
 
SCRIPT & CODE EXAMPLE
 

CSS

underline text using 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>
Comment

Css Text-decoration

/* Keyword values */
text-decoration: underline;
text-decoration: underline dotted;
text-decoration: underline dotted blue;
text-decoration: underline overline;
text-decoration: blue wavy underline;
text-decoration: line-through;
Comment

how to underline text in css

p{
text-decoration: underline;
}
Comment

PREVIOUS NEXT
Code Example
Css :: text opacity css 
Css :: screen orientation css 
Css :: textarea resize only horizontal 
Css :: css first h element 
Css :: styling radio input 
Css :: css jagged edges 
Css :: css content from data attribute 
Css :: border radius circle button 
Css :: text area focus css 
Css :: border properties css 
Css :: font for css code google link 
Css :: not hover css 
Css :: css animate background color change 
Css :: checkbox border css 
Css :: how center div in css 
Css :: how to center a inline block element 
Css :: contenteditable new line 
Css :: div class sr-only 
Css :: add backdrop to modal css 
Css :: html align svg to text 
Css :: css vertical align center 
Css :: css animation properties 
Css :: background repeat space 
Css :: test shadow css 
Css :: how to put image in button css 
Css :: font. to be thinner css 
Css :: paragraph next to image html 
Css :: download s3 bucket files on l local 
Css :: css after 
Css :: how to change button gradient 
ADD CONTENT
Topic
Content
Source link
Name
4+1 =