ZiP wrote:Can I see some code with that in it? I must be doing this wrong, cause I get no effect in FF, and IE doesn't even load the page.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Transparency Experiment</title>
<style type="text/css">
#top_box {
position: absolute;
top: 50px;
left: 50px;
width: 100px;
height: 100px;
background-color: red;
/* Fill out all three of these values for transparency. */
filter: alpha(opacity=75);
-moz-opacity: .75;
opacity: .75;
}
#middle_box {
position: absolute;
top: 75px;
left: 75px;
width: 100px;
height: 100px;
background-color: blue;
/* Fill out all three of these values for transparency. */
filter: alpha(opacity=75);
-moz-opacity: .75;
opacity: .75;
}
#bottom_box {
position: absolute;
top: 100px;
left: 100px;
width: 100px;
height: 100px;
background-color: green;
/* Fill out all three of these values for transparency. */
filter: alpha(opacity=75);
-moz-opacity: .75;
opacity: .75;
}
</style>
</head>
<body>
<div id="top_box"></div>
<div id="middle_box"></div>
<div id="bottom_box"></div>
</body>
</html>
Users browsing this forum: No registered users and 81 guests