Answers for "css except id"

CSS
11

css not class

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

css target except id

/*Use the :not selector
Example:*/

div:not(#bar){
    color:red;
}
Posted by: Guest on March-10-2021

Browse Popular Code Answers by Language