How can you make elements in a faded box opaque? I have tried:
However, the elements still show up transparent.HTML Code:#box { tansperant } #box * { not tansperant }
How can you make elements in a faded box opaque? I have tried:
However, the elements still show up transparent.HTML Code:#box { tansperant } #box * { not tansperant }
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