Forum : using the style a:visited {color: #999999;} as inline
Brief description  about Online courses   join in Online courses
View Gopinath Raghurama Damale 's Profile

using the style a:visited {color: #999999;} as inline

Dear Sir,
I am clear about converting external/internal styles into inline styles.
For example, p{color:red;} can also be used like
<p style="color:red">......</p>
But how can we convert a:visited {color: #999999;} or similar kind of style into an inline style?
Asked by Gopinath Raghurama Damale | Jun 30, 2010 |  Reply now
Replies (1)
View teacher siliconindia 's Profile
write this code in style sheet

a:link {

text-decoration:none;
}
a:visited {

text-decoration: none;
}
a:hover {

text-decoration: none;
}
a:active {
text-decoration: none;
}


Hop this will help you
Regards
Jul 2, 2010