Consider this HTML:
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
div {
position: relative;
width: 200px;
height: 200px;
background: #ff0;
}
span {
position: absolute;
width: 200px;
height: 200px;
background: #f00;
top: 100px;
left: 100px;
}
</style>
</head>
<body>
<div><span></span></div>
</body>
</html>
Output:

Now let's add some jQuery code that sets the opacity of the containing div to any level:
$('div').css({ opacity: '1' });
The output is now this:

How can I avoid this? Here's a test page.
EDIT: It happens in IE6 as well.