Greetings,
Let me first say that this product is saving my bacon. Anyhow, I've got an opacity issue that I haven't been able to solve on my own. I've prepared a short test case:
In the above example, a 200x200 green square should appear over the text. In the output, the square is fully opaque. Am I missing something obvious?
I am testing with the PC trial, version 6.0 rev 5.
Thanks in advance.
Let me first say that this product is saving my bacon. Anyhow, I've got an opacity issue that I haven't been able to solve on my own. I've prepared a short test case:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html dir="ltr" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Opacity Test</title>
<style type="text/css">
div.infront {
width:200pt;
height:200pt;
position:absolute;
left:0;
top:0;
background-color:green;
opacity:.4;
}
</style>
</head>
<body>
This text should be visible through the mask.
<div class="infront"></div>
</body>
</html>
In the above example, a 200x200 green square should appear over the text. In the output, the square is fully opaque. Am I missing something obvious?
I am testing with the PC trial, version 6.0 rev 5.
Thanks in advance.