Hallo,
ich habe von einem kollegen css code bekommen für eine komponente die ich mit jsf erstellt habe , allerdings geht das nur unter firefox und nicht unter explorer.
code :
was kann ich ändern damit es unter ie7 gehten wird?
ich habe von einem kollegen css code bekommen für eine komponente die ich mit jsf erstellt habe , allerdings geht das nur unter firefox und nicht unter explorer.
code :
CSS:
ol, ul {
list-style: none;
}
a {
outline:none;
}
body {
margin-right:10px;
line-height: 1;
font: 1em arial, sans-serif;
text-align:left;
color: #000;
min-width: 60.88em;
}
a{
text-decoration:none;
color:#000;
}
#menue{
height: 30px;
font: 90% normal Arial, Helvetica, sans-serif;
z-index:100;
background: url(../images/logo.png) no-repeat 100% 4px;
}
#menue ul{
float:left;
width:100%;
position:relative;
}
span.menuetag{
display: block;
cursor: default;
}
#menue ul li{
float:left;
margin: 0;
}
#menue ul li a{
display:block;
padding:3px 10px;
border-left:1px solid #fff;
border-right:1px solid #fff;
height:auto;
}
#menue a:hover, #menue ul ul a:hover{
background-color: #009ee0;
border-left:1px solid #c0c0c0;
border-right:1px solid #c0c0c0;
color:#FFF;
}
#menue :hover > a, #menu ul ul :hover > a{
background-color: #009ee0;
border-left:1px solid #c0c0c0;
border-right:1px solid #c0c0c0;
color:#FFF;
}
#menue ul li li{
float:none;
}
#menue ul ul.untermenue{
color: #d9d9d9;
background: #fff;
border:1px solid #c0c0c0;
position:absolute;
width:178px;
left:-9999px;
top:19px;
z-index:144;}
#menue ul ul.untermenue_aufgeklappt{
color: #d9d9d9;
background: #fff;
border:1px solid #c0c0c0;
position:absolute;
width:178px;
top:19px;
z-index:144;}
#menue ul li:hover ul{
left:auto;
}
#menue ul li li.linieunten{
border-bottom:1px solid #c0c0c0;
}
#menue ul li li.inaktiv_linieunten{
padding: 5px 44px 5px 14px;
border-bottom:1px solid #c0c0c0;
}
#menue ul li li.inaktiv{
padding: 5px 44px 5px 14px;
}
#menue ul ul.untermenue li a,
#menue ul ul.untermenue_aufgeklappt li a{
background-color: #fff;
display:block;
padding: 5px 44px 5px 14px;
}
#menue ul ul.untermenue li a:hover,
#menue ul ul.untermenue_aufgeklappt li a:hover {
background-color: #009ee0;
border-left:1px solid #009ee0;
border-right:1px solid #009ee0;
color:#FFF;
}
was kann ich ändern damit es unter ie7 gehten wird?
Zuletzt bearbeitet von einem Moderator: