How to remove underline in html on ccs.
If you are blogger users you will see a link that you created has a line underneath. Actually the line below this link could be eliminated.
For those of you who want to eliminate a line under the link there are two ways you
can do.
1. The first way by adding the code.
Suppose you create a link like this:
<a href="http://chooses-product.blogspot.com/"> information </a>
If you want to without a line, add the code: style = "text-decoration: none"
So the result will be as below:
<a href="http://chooses-product.blogspot.com/" style="text-decoration: none"> information </a>
2. A second way to go to edit html.
In the edit html you will find the code like below:
a: link {
color: c56a;
text-decoration: underline;
}
a: hover {
color: c60a;
text-decoration: underline;
}
a: visited {
color: c69a;
text-decoration: underline;
}
Replace the red with the code: none;
So the results are as follows:
text-decoration: none;
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment