Nieuw lid |
|
ummm... nou ik heb een link bar op mijn pagina die gebruik maakt van .nav li:hover attributen en die weergeeft Safari niet. Zoiets:
.nav {
margin-left: 30px;
font-family: Arial;
color: green;
text-align: left;
vertical-align: middle;
top: 0;
}
.nav a, .nav a:visited {
background-color: transparant;
text-align: center;
line-height: 53px;
}
.nav a:hover {
display: block;
height: 53px;
width: 70px;
background-color: #def1b1;
text-align: center;
color: green;
}
.nav a:active {
text-decoration: none;
}
ul.nav {
margin: 0 !important;
}
.nav li {
display: block;
height: 53px;
width: 70px;
background-color: transparant;
text-align: center;
line-height: 53px;
float: left;
}
.nav { margin-left: 30px; font-family: Arial; color: green; text-align: left; vertical-align: middle; top: 0; } .nav a, .nav a:visited { background-color: transparant; text-align: center; line-height: 53px; } .nav a:hover { display: block; height: 53px; width: 70px; background-color: #def1b1; text-align: center; color: green; } .nav a:active { text-decoration: none; } ul.nav { margin: 0 !important; } .nav li { display: block; height: 53px; width: 70px; background-color: transparant; text-align: center; line-height: 53px; float: left; }
|