hola, tengo un div con alpha a 50% y de color negro. el problema es que cuando escribo algo dentro de ese div, me lo hace transparente tambien. he tratado con el siguiente codigo:
#vote_box {
background-color: #000; /* the background */
filter:alpha(opacity=50); /* Internet Explorer */
-moz-opacity:0.5; /* Mozilla 1.6 and below */
opacity: 0.5; /* newer Mozilla and CSS-3 */
float:right;
height:300px;
width:300px;
border: 1px solid #fff;
color:#fff;
}
#opaquetext {
filter:alpha(opacity=100); /* discarded */
-moz-opacity:1.0; /* discarded */
opacity: 1.0;
color:#FFF;
}
alguna idea? gracias!!