:not(selector)





css/style.css
  • div:not(h4) {
  •  width: 200px;
  •  height: 40px;
  •  background-color: #ACBEF6;
  •  text-align: center;
  •  line-height: 40px;
  • }
div:not(h4) {
 width: 200px;
 height: 40px;
 background-color: #ACBEF6;
 text-align: center;
 line-height: 40px;
}


index.html
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>New Page</title>
  •  <link href="css/style.css" rel="stylesheet" />
  • </head>
  • <body>
  •  <div>
  •   <p>Hello World!</p>
  •   <h4>To be or not to be?</h4>
  •   <p>Привет Мир!</p>
  •   <h4>Быть или не быть?</h4>
  •  </div>
  • </body>
  • </html>
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>New Page</title>
  •  <link href="css/style.css" rel="stylesheet" />
  • </head>
  • <body>
  •  <div>
  •   <p>Hello World!</p>
  •   <h4>To be or not to be?</h4>
  •   <p>Привет Мир!</p>
  •   <h4>Быть или не быть?</h4>
  •  </div>
  • </body>
  • </html>