Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
HTML ! How to Highlight a tab when Hover over it ?
#2
That is not really hard. The "light" which appears when the link is hovered is actually an image. To activate that image you should use the CSS :hover.

An example:
Code:
<html>

<head>
<style type="text/css">
a:hover
{
background-color:black;
color:white;
}
</style>
</head>

<body>
<a href="http://bpforums.info">BP Forums</a>
</body>

</html>
In the following example, every link on the website you created will turn to Black and White after hovering it. The background color will be black and the text color will be white. Of course, you can put an image on your page and make it change after hovering it. I do not know how to explain it better, but hopefully you understood.

Regards,
Vinwarez.
Also known as Rocketalypse.
System.out.println("I prefer Java.");


Messages In This Thread
Re: Please Help! - by Vinwarez - 03-15-2012, 10:39 AM
Re: Please Help! - by xolara - 03-16-2012, 12:30 PM
Re: Please Help! - by Vinwarez - 03-17-2012, 02:49 AM
Re: Please Help! - by xolara - 03-17-2012, 04:09 AM
Re: Please Help! - by Vinwarez - 03-17-2012, 01:39 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  http://espace-hamelin.fr/index.html SGe suede boo 0 1,943 Less than 1 minute ago
Last Post:
  http://espace-hamelin.fr/index.html TUF male Ppn 0 2,044 Less than 1 minute ago
Last Post:

Forum Jump:


Users browsing this thread: 1 Guest(s)