Answers for "how to say if this class is not present do not apply the css to it?"

CSS
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 "how to say if this class is not present do not apply the css to it?"

Browse Popular Code Answers by Language