Answers for "css not selector attribute"

CSS
1

css selector no attribute

input:not([type]) {
   /* style here */
}
Posted by: Guest on January-21-2020
11

css not class

/* Style everything but the .different class */
li:not(.different) {
  font-size: 3em;
}
Posted by: Guest on April-16-2020

Code answers related to "css not selector attribute"

Browse Popular Code Answers by Language