DONT ADD ANYTHING HERE!

  1. The next-sibling combinator (+) separates two selectors and matches the second element only if it immediately follows the first element, and both are children of the same parent element

Example

Paragraph-1

Paragraph-2

Paragraph-3

HTML

<div class="combinators">
    <p class="para1">Paragraph-1</p>
    <p class="para2">Paragraph-2</p>
    <p class="para3">Paragraph-3</p>
</div> 

CSS

.combinators {
    font-size: 1.4em;
}

.para1+p {
    color: red;
    text-align: right;
}

.para1~p {
    background-color: lightgoldenrodyellow;
    text-align: center;
} 

Notes

  1. Note that text-align:center applies to the last two paragraphs
  2. Because para1~p overrides (in this case) para1+p

References