C:\Documents and Settings\Olly\Desktop\Advanced HTML\examples\transparency.html

<html> 
<head> 
    <title>Forms Page</title> 
    <style type="text/css"> 
        body { 
            background: url(sitelayout/background.gif); 
        } 
        .myLayer { 
            width: 320; 
            height: 240px; 
            position: absolute; 
            left: 100px; 
            top: 100px; 
            padding: 10px; 
            background: green; 
        } 
    </style> 
</head> 
<body> 
    <h2>Transparency Test</h2> 
    <div class="myLayer"> 
        Test Layer. 
    </div> 
</body> 
</html>