Editor
Download
Open
Auto Run
<!DOCTYPE html> <html> <head> <title>CSS :not Selector</title> <style type="text/css"> button:not([DISABLED]){ color:#ff0000; } </style> </head> <body> <button disabled="disabled">Hello</button> <button>Hello</button> </body> </html>
Preview