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

text-decoration

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' 
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

text-decoration

text-decoration: underline;
text-decoration: overline red;
text-decoration: none;

/* Global values */
text-decoration: inherit;
text-decoration: initial;
text-decoration: revert;
text-decoration: unset;
Comment

how to underline text in css

p{
text-decoration: underline;
}
Comment

CSS Text Decoration

h1 {
  text-decoration-line: overline;
}

h2 {
  text-decoration-line: line-through;
}

h3 {
  text-decoration-line: underline;
}

p {
  text-decoration-line: overline underline;
}
Comment

PREVIOUS NEXT
Code Example
Css :: call circle icon in html css 
Css :: change size material checkbox 
Css :: why is my css code not working 
Css :: css crop image to circle 
Css :: css font 
Css :: Resetting Default Table Styles 
Css :: decrease div size 
Css :: css opacity from 0 to 1 
Css :: angular headers for enc type 
Css :: disabled checkbox css 
Css :: how to make text transparent with stroke in css 
Css :: how to use font awesome with tailwind css 
Css :: css selector attribute contain 
Css :: insert background colour to css file 
Css :: put gradient color over background image 
Css :: border bottom under text only 
Css :: how to put mulitple conditions in media query 
Css :: what are types of positioning in css 
Css :: change mouse pointer on image hover 
Css :: tailwind table 
Css :: background shorthand 
Css :: bootstrap modal resize with jquery 
Css :: text stroke css 
Css :: *+* css 
Css :: auto suggestion in jupyter notebook 
Css :: prevent bounce scroll css 
Css :: remove or hide powered by text from Google Translate 
Css :: create shadow css 
Css :: add image to css 
Css :: remove link style 
ADD CONTENT
Topic
Content
Source link
Name
3+5 =