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

how to underline text in css

p{
text-decoration: underline;
}
Comment

PREVIOUS NEXT
Code Example
Css :: how to use font awesome with tailwind css 
Css :: ionic mobile always dark theme in web 
Css :: cursor as image css 
Css :: css for safari only 
Css :: center css 
Css :: difference between :after and ::after 
Css :: background image 
Css :: horizontal line css before and after heading 
Css :: remove box around button when clicked 
Css :: how to select classes that start with a certian name 
Css :: font face 
Css :: better transition timing functions 
Css :: what are types of positioning in css 
Css :: flex align self 
Css :: css text rotate 
Css :: html css tilt text 
Css :: hide featured image in wordpress 
Css :: select third element of an id css 
Css :: css curved border 
Css :: pure css tabs 
Css :: have unordered list horizontal css 
Css :: Error: Could not find "stylelint-csstree-validator" 
Css :: purge tailwind 3 
Css :: How do I make my background color darker in CSS 
Css :: create shadow css 
Css :: remove outline on button click 
Css :: sideways linear gradient 
Css :: The :invalid CSS pseudo-class 
Css :: css filter 
Css :: grid-template-rows 
ADD CONTENT
Topic
Content
Source link
Name
8+9 =