Answers for ":not in css"

CSS
5

css not

/* Selects any element that is NOT a paragraph */
:not(p) {
  color: blue;
}
Posted by: Guest on May-03-2021

Browse Popular Code Answers by Language