oliver
12-14-2006, 06:29 PM
hey anyone with a mac please check out this code in Safari...
<html>
<head>
<style type="text/css">
#page_screen
{
background-color:#000000;
filter:alpha(opacity=60);
opacity: 0.6;
position:absolute;
top:0px;
left:0px;
width:100%;
height:500px
display:block;
}
</style>
</head>
<body id="page_screen">
Some Text Here
</body>
</html>
it is supposed to make a big block on the screen that is kinda see-thru but it just comes out black. if you put the page_screen id in a div tag it works better but I want it in the body tag. why is it acting so weird?
<html>
<head>
<style type="text/css">
#page_screen
{
background-color:#000000;
filter:alpha(opacity=60);
opacity: 0.6;
position:absolute;
top:0px;
left:0px;
width:100%;
height:500px
display:block;
}
</style>
</head>
<body id="page_screen">
Some Text Here
</body>
</html>
it is supposed to make a big block on the screen that is kinda see-thru but it just comes out black. if you put the page_screen id in a div tag it works better but I want it in the body tag. why is it acting so weird?