CSS में इमेज ब्राइटनेस सेट करने के लिए, फिल्टर ब्राइटनेस (%) का उपयोग करें। याद रखें, मान 0 छवि को काला बनाता है, 100% मूल छवि और डिफ़ॉल्ट के लिए है। बाकी, आप अपनी पसंद का कोई भी मान सेट कर सकते हैं, लेकिन 100% से ऊपर के मान छवि को उज्जवल बना देंगे।
उदाहरण
आइए अब एक उदाहरण देखें -
<!DOCTYPE html> <html> <head> <style> img.demo { filter: brightness(120%); } </style> </head> <body> <h1>Learn MySQL</h1> <img src="https://www.tutorialspoint.com/mysql/images/mysql-mini-logo.jpg" alt="MySQL" width="160" height="150"> <h1>Learn MySQL</h1> <p>Below image is brighter than the original image above.</p> <img class="demo" src="https://www.tutorialspoint.com/mysql/images/mysql-mini-logo.jpg" alt="MySQL" width="160" height="150"> </body> </html>
आउटपुट