tryit_yourcode See Results <!DOCTYPE html> <html> <head> <style> div{ background-color: #ff5722; } div.image-opacity1 { opacity: 0.1; filter: alpha(opacity=10); /* For IE8 and earlier */ } div.image-opacity2 { opacity: 0.3; filter: alpha(opacity=30); /* For IE8 and earlier */ } div.image-opacity3 { opacity: 0.5; filter: alpha(opacity=50); /* For IE8 and earlier */ } </style> </head> <body> <h1>Transparent Box</h1> <div class="image-opacity1"><p>opacity 0.1</p></div> <div class="image-opacity2"><p>opacity 0.3</p></div> <div class="image-opacity3"><p>opacity 0.5</p></div> <div><p>opacity 1 (default)</p></div> </body> </html>