Resultat af CSS vises meget forskelligt i forskellige browsere
Jeg forsøger at formatere nogle undermenuer v.hj.a. CSS. Her kommer lige mit CSS til både hoved- og undermenuer (det ser ikke ud som det skal endnu):a.menu, a.menu:link, a.menu:visited {
width: 100%;
display: block;
font-family: verdana, helvetica, arial;
font-weight: none;
font-size: 11px;
color: #fff;
background-color: #331AE4;
padding-left: 10px;
text-decoration: none;
}
a.menu:hover {
color: #fff;
background-color: #0090e4;
text-decoration: none;
}
.activeMenu {
display: block;
background-color:#0078c8;
color: #eee;
text-decoration: none;
}
a.menu, a.activeMenu:hover, a.menu:hover, a.activeMenu:hover {
color: #fff;
text-decoration: none;
}
a.menusub, a.menusub:link, a.menusub:visited {
width: 100%;
display: block;
font-family: verdana, helvetica, arial;
font-weight: none;
font-size: 11px;
color: #000;
padding-left: 15px;
text-decoration: none;
}
a.menusub:hover {
color: #fff;
background-color: #0090e4;
text-decoration: none;
}
.activeMenusub {
display: block;
background-color:#0078c8;
color: #eee;
text-decoration: none;
}
a.menusub, a.activeMenusub:hover, a.menusub:hover, a.activeMenusub:hover {
color: #fff;
text-decoration: none;
}
Problemet er, at det vises meget forskelligt i forskellige browsere. I stedet for at komme med en masse forklaringer her, har jeg lavet en lille side, hvor du kan se hvad jeg taler om:
http://www.include.dk/difference/
Gode forslag til en løsning modtages meget gerne :)
