Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> img.a { opacity: 1; -moz-opacity: 1; -khtml-opacity: 1; /* Safari 1.x */ } img.b { -moz-opacity: 0.5; -khtml-opacity: 0.5; /* Safari 1.x */ opacity: 0.5; /* Good browsers */ } </style> </head> <body> <h1>Example of opacity property</h1> <h3>Opacity: 1.0;</h3> <img src="/uploads/media/default/0001/01/4982c4f43023330a662b9baed5a407e391ae6161.jpeg" alt="house" width="300" height="200" class="a"> <h3>Opacity: 0.6;</h3> <img src="/uploads/media/default/0001/01/4982c4f43023330a662b9baed5a407e391ae6161.jpeg" alt="house" width="300" height="200" class="b"> </body> </html>