Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

*+* 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;
}
 
PREVIOUS NEXT
Tagged: #css
ADD COMMENT
Topic
Name
6+2 =