एक बटन में पारदर्शिता जोड़ने के लिए, CSS अस्पष्टता गुण का उपयोग करें। यह बटन के लिए एक अक्षम रूप बनाता है।
आप बटन में पारदर्शिता जोड़ने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं
उदाहरण
<!DOCTYPE html> <html> <head> <style> .btn1 { color: black; text-align: center; font-size: 15px; } .btn2 { color: black; text-align: center; font-size: 15px; opacity: 0.8; } </style> </head> <body> <h2>Result</h2> <p>Click below for result:</p> <button class = "btn1">Enabled</button> <button class = "btn2">Disabled</button> </body> </html>