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

how to underline font in css

h3 {
  text-decoration: underline;
}
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 :: css background image shown on top right 
Css :: what port does wss use 
Css :: span to left css 
Css :: file upload no button 
Css :: how to give background overlay in css 
Css :: flex justify-content 
Css :: materialize css for react 
Css :: no break line html 
Css :: css resize image 
Css :: scss import class from another file 
Css :: css textarea set max characters 
Css :: change image with css 
Css :: what are the types of positioning in css 
Css :: grid template rows 
Css :: scss exceeded maximum budget. Budget 7.00 kB was not met by 841 bytes with a total of 7.82 kB. 
Css :: css erase text 
Css :: center div with flexbox 
Css :: scss variables 
Css :: css border gradient 
Css :: input area bootstrap highlight 
Css :: website css not loading 
Css :: box shadow to table cell css 
Css :: css mauszeiger ändern 
Css :: grid repeat css 
Css :: css example 
Css :: css lock scroll 
Css :: adding a background color in css 
Css :: Modify your placeholder 
Css :: css background gradient 
Css :: form validation with css 
ADD CONTENT
Topic
Content
Source link
Name
7+6 =