About
Explore
Events & Classes
Support Us
Join
Sign In
usertoy
View Project Page
Run
Fullscreen
usertoy s code project 10
HTML
CSS
JS
<!DOCTYPE html> <html> <head> <style> img { opacity: 0.6; } </style> </head> <body> <h1>Image Transparency</h1> <p>The opacity property specifies the transparency of an element. The lower the value, the more transparent:</p> <p>Image with 60% opacity:</p> <img src="https://justcodaborate.com/images/usertoy.jpg" alt="usertoy" width="170" height="100"> </body> </html>