view stack.css @ 101:2bec541ef58f laserkard

made it HTML 4.1 strict
author Robert McIntyre <rlm@mit.edu>
date Tue, 27 Jul 2010 08:39:43 -0400
parents 0f19af92260e
children
line wrap: on
line source
1 .transparentDiv
2 {
3 /* IE */
4 filter:alpha(opacity=50);
5 /* CSS3 standard */
6 opacity:0.5;
7 background-color:#000000;
8 height:800px;
9 width:300px;
10 }
12 /*
13 .transparentDiv {
14 width:400px;
15 height:180px;
16 margin:30px 50px;
17 background-color:#ffffff;
18 border:1px solid black;
19 /* for IE */
20 filter:alpha(opacity=60);
21 /* CSS3 standard */
22 opacity:0.6;
23 }
24 */