Answers for "css apply to all except one id"

CSS
1

css target except id

/*Use the :not selector
Example:*/

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

Code answers related to "css apply to all except one id"

Browse Popular Code Answers by Language