Answers for "css text decoration none"

CSS
53

text-decoration css

h1 {
  text-decoration: overline;
}

h2 {
  text-decoration: line-through;
}

h3 {
  text-decoration: underline;
}

h4 {
  text-decoration: underline overline;
}
Posted by: Guest on February-20-2020
4

text decoration none

exampe{
	text-decoration: none; 
}
Posted by: Guest on March-19-2021
8

css strikethrough html text

style="text-decoration: line-through;"
Posted by: Guest on July-07-2020
14

css how to style a

/*a normal, unvisited link*/
a:link{
	color: green;
}
/*a link the user has visited*/
a:visited{
	color: purple;
}
/*a link when the user mouses over it*/
a:hover{
	color: yellow;
}
/*a link the moment it is clicked*/
a:active{
	color: brown;
}
Posted by: Guest on May-14-2020
0

underline css still there after text-decoration: none

a,
a:link,
a:visited,
a:hover,
a:active{
    text-decoration: none;
}
Posted by: Guest on October-25-2021

Browse Popular Code Answers by Language