|
| CSS Fra : MiG |
Dato : 24-07-01 14:57 |
|
Hejsa
Jeg er kommet i et lille problem, og det er at jeg har i en css-fil
følgende:
a
{
font-family: tahoma, verdana, arial;
font-weight: normal;
text-decoration: none;
font-size: 10pt;
color: #cccccc;
}
a:hover
{
font-family: tahoma, verdana, arial;
font-weight: normal;
text-decoration: underline;
font-size: 10pt;
color: #ffcc00;
}
Problemet er at jeg ikke ved hvordan jeg skal lave en sekundær 'a' og
'a:hover' som skal se sådan ud:
a.navigation
{
font-family: tahoma, verdana, arial;
font-weight: normal;
text-decoration: none;
font-size: 8pt;
color: #ffcc00;
a:hover.navigation
{
font-family: tahoma, verdana, arial;
font-weight: normal;
text-decoration: none;
font-size: 8pt;
color: #ffcc00;
}
Er der nogen som kan sige mig hvad det er jeg har gjort galt?????
Mvh
Clark
| |
Jonas C. Voss (24-07-2001)
| Kommentar Fra : Jonas C. Voss |
Dato : 24-07-01 16:01 |
|
MiG <clark@cool.dk> wrote:
Din css sådan ud:
> a.navigation
> {
> font-family: tahoma, verdana, arial;
> font-weight: normal;
> text-decoration: none;
> font-size: 8pt;
> color: #ffcc00;
>
> a:hover.navigation
> {
> font-family: tahoma, verdana, arial;
> font-weight: normal;
> text-decoration: none;
> font-size: 8pt;
> color: #ffcc00;
> }
men skal se sådan ud:
a.navigation:link
{
font-family: tahoma, verdana, arial;
font-weight: normal;
text-decoration: none;
font-size: 8pt;
color: #ffcc00;
a.navigation:hover
{
font-family: tahoma, verdana, arial;
font-weight: normal;
text-decoration: none;
font-size: 8pt;
color: #ffcc00;
}
Må jeg i øvrigt anbefale dig dette rigtig gode CSS-website:
< http://css.nu>
og disse sites for mere info:
< http://allmyfaqs.com/cgi-bin/wiki.pl?Hover_effect>
< http://www.w3.org/TR/CSS2/selector.html#type-selectors>
Håber det hjalp.
--
Jonas [CPH, DK]
Erase harddrive to reply
http://geografi.hjem.wanadoo.dk/
| |
|
|