• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

IE Problem mit Dropdown Feld

mle1988

Neues Mitglied
Hallo,

dieses Dropdown öffnet sich im IE nicht, jedoch in Chrome etc. wunderbar.

Woran liegt das ?

<div class="dropdown" id="dropdown">
<input type="checkbox" id="drop1" />
<label for="drop1" class="dropdown_button">Select Language <span class="arrow"></span></label>
<ul class="dropdown_content">
<li><a href="#">Deutsch</a></li>
<li><a href="#">English</a></li>
<li><a href="#">Русский</a></li>
<li><a href="#">Nederlandse</a></li>
<li><a href="#">Français</a></li>
</ul>

</div>


.dropdown {
display: block;
display: inline-block;
margin: 0px 3px;
position: relative;
}

/* ===[ For demonstration ]=== */

.dropdown {
padding-left:950px;
z-index:9999;

}

/* ===[ End demonstration ]=== */

.dropdown .dropdown_button {
cursor: pointer;
width: auto;
display: inline-block;
padding: 4px 5px;
border: 1px solid #AAA;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
font-weight: bold;
color: #717780;
line-height: 16px;
text-decoration: none !important;
background: white;
}

.dropdown input[type="checkbox"]:checked + .dropdown_button {
border: 1px solid #AAA;
color: #717780;
background: white;
-moz-border-radius-topleft: 2px;
-moz-border-radius-topright: 2px;
-moz-border-radius-bottomright: 0px;
-moz-border-radius-bottomleft: 0px;
-webkit-border-radius: 2px 2px 0px 0px;
border-radius: 2px 2px 0px 0px;
border-bottom-color: #6D84B4;
}

.dropdown input[type="checkbox"] + .dropdown_button .arrow {
display: inline-block;
width: 0px;
height: 0px;
border-top: 5px solid #6B7FA7;
border-right: 5px solid transparent;
border-left: 5px solid transparent;
}

.dropdown input[type="checkbox"]:checked + .dropdown_button .arrow { border-color: white transparent transparent transparent }

.dropdown .dropdown_content {
position: absolute;
border-left: 1px solid #777;
border-right: 1px solid #777;
border-bottom: 1px solid #777;
padding: 0px;
background: white;
margin: 0;
display: none;
}

.dropdown .dropdown_content li {
list-style: none;
margin-left: 0px;
line-height: 16px;
margin-top: 2px;
margin-bottom: 2px;
}

.dropdown .dropdown_content li:hover {
border-top-color: #009EE0;
border-bottom-color: #009EE0;
background: #009EE0;
}

.dropdown .dropdown_content li a {
display: block;
padding: 2px 7px;
padding-right: 15px;
color: black;
text-decoration: none !important;
white-space: nowrap;
}

.dropdown .dropdown_content li:hover a {
color: white;
text-decoration: none !important;
}

.dropdown input[type="checkbox"]:checked ~ .dropdown_content { display: block }

.dropdown input[type="checkbox"] { display: none }
 
Zurück
Oben