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