CSS navigaiton bar - horisontal og vertikal.
CSS-kode:
<style/
#h_nav_bar a {
padding:15px; font-weight:bold; float:left; }
#h_nav_bar a:link { color:#d0d0d0;
background-color:#0000a0; }
#h_nav_bar a:visited { color:#c0c0c0;
background-color:#0000a0; }
#h_nav_bar a:hover { color:#ffffff;
background-color:#000060; }
#h_nav_bar a:active { color:#f0f0f0;
background-color:#00ff00; }
</style/
HTML-kode:
<div id="h_nav_bar"/
<a
href="html-anchor-link.htm"/Anchor link</a/
<a
href="html-link-color.htm"/Link color</a/
<a
href="../mailto.htm">Email link</a>
<a
href="html-image-link.htm">Image link</a>
<a
href="html-text-link.htm">Text link</a>
</div>
Utsikt:
#link_bar a er stilen for alle delene av lenken.
#link_bar a: link er stilen til vanlig link.
#link_bar a: besøkt er stilen til besøkt lenke.
#link_bar a: hover er stilen med musen hovered link.
#link_bar a: aktiv er stilen på lenken når den trykkes med musen.
CSS-kode:
<style>
#v_nav_bar a {
padding:15px; font-weight:bold; display:block; width:120px; }
#v_nav_bar a:link { color:#d0d0d0;
background-color:#0000a0; }
#v_nav_bar a:visited { color:#c0c0c0;
background-color:#0000a0; }
#v_nav_bar a:hover { color:#ffffff;
background-color:#000060; }
#v_nav_bar a:active { color:#f0f0f0;
background-color:#00ff00; }
</style>
HTML-kode:
<div id="v_nav_bar">
<a
href="html-anchor-link.htm">Anchor link</a>
<a
href="html-link-color.htm">Link color</a>
<a
href="../mailto.htm">Email link</a>
<a
href="html-image-link.htm">Image link</a>
<a
href="html-text-link.htm">Text link</a>
</div>
Utsikt:
#link_bar a er stilen for alle delene av lenken.
#link_bar a: link er stilen til vanlig link.
#link_bar a: besøkt er stilen til besøkt lenke.
#link_bar a: hover er stilen med musen hovered link.
#link_bar a: aktiv er stilen på lenken når den trykkes med musen.