TheInsider
Programmer
Hi,
I've got a page with a repeating background image. This page also has a <Div> tag (border) that I want to be slightly transparent so the repeating background image is fully visible around the <Div> tag but only somewhat visible inside the <Div> tag. See below:
The problem is that any content I place in the inner <Div> tag is also displayed at 70% opacity -- buttons, text boxes, etc. However, I don't want this content to be transparent!
TIA
I've got a page with a repeating background image. This page also has a <Div> tag (border) that I want to be slightly transparent so the repeating background image is fully visible around the <Div> tag but only somewhat visible inside the <Div> tag. See below:
Code:
<div style = "background-color: #FFFFFF; width: 100%; opacity: 0.70; filter: alpha(opacity=70); -moz-opacity: 0.70; border: 1px solid #000040;">
<div style = "margin: 10px 10px 10px 10px;">
<div style = "opacity: 1.0; filter: alpha(opacity=100); -moz-opacity: 1.0;">
<h1>This shouldn't be transparent at all!</h1>
<input type="Submit">
</div>
</div>
</div>
TIA