Beispiel:CSS grundlagen not().html
Aus SELFHTML-Wiki
<!doctype html> <html>
<head> <meta charset="utf-8"> <title>CSS-Beispiel: Pseudoklasse :not()</title> <style> a:not([href*="example."]) { background: pink; } </style> </head> <body>
Die Pseudoklasse :not()
- <a href="http://example.com/">Beispiellink</a>
- <a href="http://example.com/example.pdf">ein PDF-Dokument</a>
- <a href="http://wiki.selfhtml.org/">Das SELFHTML Wiki</a>
- <a href="HTTPS://EXAMPLE.ORG/WIKI/EXAMPLE.PDF/">Groß- und Kleinschreibung beachten!</a>
</body>
</html>