Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "[URL unfurl="true"]http://www.w3.org/TR/html4/strict.dtd">[/URL]
<html lang="en">
<head>
<style>
a:hover.top{
color:red;}
a:hover.bot{
color:green;}
</style>
</head>
<body >
<a href="test"[COLOR=red] class = "top"[/color]>test2</a>
<a href="test1"[COLOR=red] class = "bot"[/color]>test1</a>
</body>
</html>
a:hover{
color:#000000;
}
#header a:hover{
color:#FFF000;
}
Not really but you can turn off the underline and work with the border. Border is fully customizable:boroski said:is it possible in css to change the underline thickness for links?
a {
text-decoration: none;
border-bottom: 2px solid blue;
}
a.top:hover { color:red; }
a.bot:hover { color:green; }