transparent background colors

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I make transparent background colors in layers? I would like to have
some of the layers overlap and would like them to be transparent to give the
site dimension.
 
Use CSS....

color: #00FF00; /* or what ever color you want */
filter: alpha(opacity=80, style=0); /* only used in IE */
left: 10px;
-moz-opacity: .80; /* only used in NN */

Look at www.xmas-i-am.com
Where the Fuchsia, Blue, & Green layers overlap.

You might also want to look here....
http://msdn.microsoft.com/workshop/samples/author/dhtml/DXTidemo/DXTidemo.htm

For more BUT the above is only for IE.

Don
Back from the Hosp. (Alive)
===========================
| How can I make transparent background colors in layers? I would like to
have
| some of the layers overlap and would like them to be transparent to give
the
| site dimension.
 
Back
Top