Beispiel:CSS grundlagen not().html

Aus SELFHTML-Wiki
Wechseln zu: Navigation, Suche

<!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()

 </body>

</html>