I have a special problem with my transparency effect. Since I have a background image on the body background I want it to display with opacity through every white area. The problem is that it does not work if my element (in this case a input field) has a parent with a background color. Since I do not know how to google this problem I hope someone here can give me a hand.
So I will give you a simple example page to show you my problem:
<body style="background: url(./images/background.png) no-repeat center top fixed; background-color: #FFFFFF; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;">
<div style="height:300px; opacity: 0.95;">
<input type="text" value="test" style="height:200px; width: 100%">
</div>
<div style="background-color:yellow; height:300px;">
<input type="text" value="test" style="height:200px; width: 100%; opacity: 0.95;">
</div>
And here is the screenshot of the page http://haraldegger.com/show.png
Thank you for your help in advance and have a nice day.