Why does the inner DIV also become transparent when I use this code?
My plan was to have the text visible and transparent background.
Do I have to float the inner div over the transparent div?
You can see live demo here: http://jsfiddle.net/pBAf5/
HTML
<div class="openinghours floatRight">
<div class="content">My test goes here</div>
</div>
CSS
.openinghours {
height: 70px;
width: 300px;
padding: 10px;
font-size: 0.85em;
background-color: #f6f6f6;
border: solid 1px #c7c7c7;
margin-right: 20px;
margin-top: 5px;
opacity: .5;
filter: alpha(opacity=50);
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}