Link box?

Following looking over this particular tutorial, I figured it all out and it turned out now imprinted in my brain: http: //www. w3schools. com/css/tryit. aspfilename=trycss_link_advanced

Nevertheless, one thing this bothers me, when will i make it so it is not for ALL links How to make it so it’s only for my navigation

http: //www. w3schools. com/css/tryit. aspfilename=trycss_link_advanced

You specify a class for your own links….

Do this example:

Code:
< html>
< style>
your. mylink: link, your. mylink: active, your. mylink: visited
background-color: transparent;
font-family: arial;
font-size: 12pt;
text-decoration: not one;
color: #555;

your. mylink: hover
background-color: #555;
font-family: arial;
font-size: 12pt;
text-decoration: not one;
color: #fff;

< /style>
< body>

This really is an example< br /> < br />
< your href=" #" > An average link< /a>
< br /> < br />
< your href=" #" class=" mylink" > My link style< /a>
< br /> < br />

< /body>
< /html>

.

This entry was posted in Web Design and tagged , , , , , , , , , , . Bookmark the permalink.

Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *