I do not want a child element to inherit parent opacity. [enter link description here][1]
[1]: http://jsfiddle.net/xALAW/ jsfiddle
<html>
<head></head>
<body>
<div class='hasopacity'>
This is the text with some opacity
<div class='noopacity'>
This is the text with no opacity
</div>
</div>
</body>
css
.hasopacity{opacity:0.5}
.noopacity{opacity:1}