Qq

Twinkie

Banned
Messages
1,389
Reaction score
12
Points
0
How can you make elements in a faded box opaque? I have tried:
HTML:
#box {
   tansperant
}

#box * {
   not tansperant
}
However, the elements still show up transparent.
 

Mr. DOS

Member
Messages
230
Reaction score
5
Points
18
Transparency is inherited, that is, 50% transparency in a 50% transparent container will be 25% opaque. The only real workaround to this is to use semitransparent PNG background images, or use positioning to align the opaque element above the transparent one.

--- Mr. DOS
 
Top