TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> select:disabled { background-color: lightgray; border: 1px solid gray; color: darkgray; } </style> </head> <body> <select> <option>Enabled Option</option> <option>Another Option</option> </select><br><br> <select disabled> <option>Disabled Dropdown</option> </select> </body> </html>