3/10/10

Bottom Line Eliminating Link

Once there was one friend who sends an email to me, he was asked how to remove the existing bottom line on each link. This underscores a very disturbing according to him the beauty of his writings. It's like the words of my previous, other people want, for any business links there who like to use underscores and some that do not like going down the line.

According to the prevailing habits, a form of writing that usually do have links underlined, but the real bottom line can be in if we want to eliminate. How do I remove the underline on links? to eliminate buddy have to change some existing code in the CSS style sheets, the code is usually something like this:


a: link (
color: # 58a;
text-decoration: underline;
)

a: hover (
color: # C60;
text-decoration: underline;
)

a: visited (
color: # 969;
text-decoration: underline;
)


In order to be faham, I will describe:


a: link (
color: # 58a;
text-decoration: underline;
)

This code has a meaning -> a link will be blue and underlined.


a: hover (
color: # C60;
text-decoration: underline;
)

A link in the spotlight when the mouse will change color to dark blue and underlined.


a: visited (
color: # 969;
text-decoration: underline;
)


If ever a link is clicked by the same computer will be dark blue (really) and underlined.


Which next question that makes the above code becomes underlined links? answer is the code:

text-decoration: underline;

Writings underline that caused links to be underlined. If we do not want a bottom line on a link, then we just simply change the word none, then the code will be like this:

text-decoration: none;

From the above understanding was of course we can arrange to have or do not want a bottom line, depending on individual tastes, whether a link to underlined or not? whether, if a link on the mouse to highlight the underlined or not? whether, if a link had the visit or click on underlined want or not? it's up to my friend as the blog owner. Want underlined? yes use underline, if you do not want to tingal underlined replace it with none, easy is not it?

No comments:

Post a Comment