Hvordan laver man flere linkmuligheder
Jeg bruger ext. CSS og har en side hvor jeg ikke ønker alle links at ha samme skriftstørrelse.Jeg har (se forneden), som gir ret stor skrift (14px), og vil gerne har en mulighed til mindre "linkskrift"
på samme side
a:link
{
font-family :verdana, sans-serif;
color: #008080;
font-size: 14px;
font-weight: bold;
background-color: #FFFFFF;
text-decoration : none;
}
/* link 14 px */
a:visited
{
font-family :verdana, sans-serif;
color: #008080;
font-size: 14px;
font-weight: bold;
background-color: #FFFFFF;
text-decoration : none;
}
/* link 14 px */
a:hover
{
font-family :verdana, sans-serif;
color: #008080;
font-size: 14px;
font-weight: bold;
background-color: #FFFFFF;
text-decoration : none;
}
/* link 14 px */
a:active
{
font-family :verdana, sans-serif;
color: #008080;
font-size: 14px;
font-weight: bold;
background-color: #FFFFFF;
text-decoration : none;
}