From here - http://www.w3schools.com/cssref/css_selectors.asp -
element+element
div + p
Selects all
p
elements that are placed immediately afterdiv
elements
for example -
div+p {
...
}
How could I select the same in sass using the p
as nested in div
(or any other concept) ?