अक्षम बटन लुक बनाने के लिए, 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.5; } </style> </head> <body> <h2>Result</h2> <p>Click below for result:</p> <button class = "btn1">Enabled</button> <button class = "btn2">Disabled</button> </body> </html>