Ich habe den folgenden HTML-Code, der einfach ein Bild mit einem transparenten schwarzen Überlagerung enthält.
Ich möchte nicht, dass mein Text transparent ist. Ich habe es mit z-index
versucht, aber mein Text ist immer noch transparent:
Was ist falsch an meinem Code?
Dies ist mein HTML:
Hockey
Beispiels Text
...
und das ist mein CSS:
.hilight h2{
font-family: Helvetica, Verdana;
color: #FFF;
z-index: 200;
}
.promo {
position: relative;
}
.promo img {
z-index: 1;
}
.hilight {
background-color: #000;
position: absolute;
height: 85px;
width: 415px;
opacity: 0.65;
font-family: Verdana, Geneva, sans-serif;
color: #FFF;
bottom: 0px;
z-index: 1;
}