Hi , ich möchte ein info Block / Fenster zeigen mit hilfe von CSS , Aber an einer Stelle (wo eine <select> liste befindet ) das Fenster ist an dieser Stelle Durchsichtig ,Die <select> liste kann man sehen und das will ich verhindern , weisst jemand wie?
Danke in Voraus
hier ist der CSS code:
Danke in Voraus
hier ist der CSS code:
Code:
#navi8 {
margin-top: 0px;
margin-left: 0px;
}
#navi8 a {
display: text;
font: bold 13px Arial, Helvetica, sans-serif;
text-decoration: none;
color: green;
text-align: center;
}
#navi8 a:link {
color:green;
}
#navi8 a:visited {
color:#green;
}
#navi8 a:hover {
color:#000;
background: #ffdead;
}
#navi8 a:active {
color: #fc0;
}
#navi8 a .showcase {
display: none;
}
#navi8 a:hover .showcase {
position: absolute;
top: 0px;
left: 0px;
display: block;
width: 500px;
height:500px;
font: bold 0.92em Verdana, Arial, Helvetica, sans-serif;
background: #ffdead;
border: 1px dashed #257;
color: #000;
padding: 5px;
}