Is it possible with just CSS to have a white background color and then have 50% transparncy with:
.transparent_class {
filter:alpha(opacity=50);
-moz-opacity:0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
}
and still have a solid white border?