Buongiorno
Ho un problema con un menù in explorer.
Il menù è fatto in css tramite <ul> e[*].
Il problema è che funziona con Firefox e Chrome ma da Explorer non viene riconosciuto ne come hover ne come link in generale. Quale può essere il problema?
Posto il codice:
codice:
#menu {
width: 259px; /* set width of menu */
height: 229px;
background: #e1e1e2;
}
#menu ul { /* remove bullets and list indents */
list-style: none;
margin: 0;
padding: 0;
}
/* style, color and size links and headings to suit */
#menu a {
display: block;
line-height: 26px;
margin-bottom: 2px;
margin-left: 12px;
padding-left: 18px;
vertical-align: middle;
}
#menu a {
color: #fff;
background: #99b7b1;
text-decoration: none;
text-align: left;
text-transform: uppercase;
font-size: 12px;
font-weight: bold;
text-indent: -1000px;
}
#menu a:hover {
color: #fff;
background: #2c8270;
}
Quale può essere l'errore?