Editor Arrow Download Open
<!DOCTYPE html> <html> <head> <title>CSS :not Selector</title> <style type="text/css"> p:not(.one) { color:#ff0000; } </style> </head> <body> <p>This is not selector example.</p> <p class="one">This is another paragraph.</p> </body> </html>
  Preview Arrow