CSS3 সহ ইমেজে অপাসিটি প্রয়োগ করতে, ফিল্টার প্রপার্টির জন্য অপাসিটি মান ব্যবহার করুন।
উদাহরণ
আসুন একটি উদাহরণ দেখি -
<!DOCTYPE html> <html> <head> <style> img.demo { filter: opacity(60%); } </style> </head> <body> <h1>Learn Spring Framework</h1> <img src="https://www.tutorialspoint.com/spring/images/spring-mini-logo.jpg" alt="Spring Framework" width="160" height="150"> <h1>Learn Spring Framework</h1> <img class="demo" src="https://www.tutorialspoint.com/spring/images/spring-mini-logo.jpg" alt="Spring Framework" width="160" height="150"> </body> </html>
আউটপুট