no text decoration css code example
Example 1: css no underline
#Just set text decoration to none
.a {
text-decoration: none;
}
Example 2: text decoration none
exampe{
text-decoration: none;
}
Example 3: css text strike
h2 {
text-decoration: line-through;
}
Example 4: css strikethrough html text
style="text-decoration: line-through;"
Example 5: 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;
}