Click here to Skip to main content
15,886,788 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi friends,

I am new to website desinging using html and css.Can yu please help me out.. i need to highlight(active,visited)the menu using css and html. Tried with many codings. But its not working. can yu give me one sample code for highlighting. Thanks.
Posted

Try searching on Google you will get thousands of example.
Please go through these pages:-

CSS tutorial - starting with HTML + CSS[^]
How to Highlight the Menu in css. I used a:active but it does not serve the purpose I expected[^]
HTML <body> vlink Attribute[^]

And lot more is there.

Good luck.
 
Share this answer
 
v5
 
Share this answer
 
v2
to color the links you should try
CSS
a:visited
{
    /*you css goes here*/
}
a:active
{
    //your css
}

to customoize an "a" tag inside another element try :
CSS
yourElement a :visited
{
    //your css
}

":" before any state in css
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900