Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> p { color: #666; } :not(p) { color: #8ebf42; } </style> </head> <body> <h2>Exemple du sélecteur :not()</h2> <p>Lorem Ipsum est simplement du faux texte</p> <p>Lorem Ipsum est simplement du faux texte</p> <div>Lorem Ipsum est simplement du faux texte</div> <a href="https://fr.w3docs.com" target="_blank">Lien à W3docs</a> </body> </html>