Habe es jetzt so gemacht
Code:
<meta http-equiv="X-UA-Compatible" content="IE=9">
<style type="text/css">
.menu {
position: relative;
border-top: 1px solid #ffffff;
border-bottom: 50px;
min-height: 70px;
padding: 7px 17px;
color: #333333;
font-size: 12px;
}
.menu:before {
content: "Thermodrucker";
border-left: "30px"
}
.menu:focus {
pointer-events: none;
}
.menu:focus .menu-content {
opacity: 1;
visibility: visible;
pointer-events: auto;
}
.menu-content {
position: absolute;
z-index: 1;
width: 190px;
height: auto;
list-style: none;
opacity: 0;
visibility: hidden;
transition: visibility 0.5s;
}
</style>
<div tabindex="0" class="menu">
<ul class="menu-content">
<li><a href="light.html">Test</a></li>
<li><a href="standart.html" >Test2</a></a></li>
<li><a href="pro.html" >Test3</a></a></li>
</ul>
</ul>
<!-- CATEGORY END -->
</div>
</div>
</div>
allerdings, sobald ich auf einen link klicke, geht das geöffnete fenster weg und er geht nicht auf die Seite, sondern bleibt auf der aktuellen Seite.
Habe gerade gesehen, dass das problem nur mit dem IE auftritt.