jQuery and ASP.NET

December 28, 2009

Change the Color of Hyperlink inside a Container Using CSS




A user recently asked me if it was possible to change the color of hyperlinks placed in a container, instead of changing the hyperlink color of the entire page. Here’s a simple solution to change the hyperlink color only inside divOne:

#divOne a:link
{
color:White;
}

#divOne a:visited
{
color:White;
}

#divOne a:hover
{
color:Black;
}

Similarly if you want to change hyperlink color nested in containers; for eg: a hyperlink kept inside a table inside divOne, use this:

#divOne table a:link
{
color:White;
}


Bookmark this link on del.icio.us (saved by 0 users)

Did you like this post?
kick it on DotNetKicks.com
subscribe via rss subscribe via e-mail
print this post follow me on twitter
Others Also Read..

comments

0 Responses to "Change the Color of Hyperlink inside a Container Using CSS"
 

Copyright 2010 All Rights Reserved DevCurry.com by Suprotim Agarwal