Answers for "*+* css"

CSS
1

*+* css

/* Target any element having a direct sibling before it or
   you can replace * + * with *:not(:first-child), anything not first child*/
.flow > * + * {
  margin-top: 1rem;
  outline: 1px solid red;
}
Posted by: Guest on March-17-2022

Browse Popular Code Answers by Language