Answers for "no text decoration css"

CSS
1

css no underline

#Just set text decoration to none
.a {
    text-decoration: none;
}
Posted by: Guest on April-17-2021
4

text decoration none

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

css text strike

h2 {
  text-decoration: line-through;
}
Posted by: Guest on June-11-2020
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

Browse Popular Code Answers by Language