V
V
Vasiliy2015-05-01 01:50:59
css
Vasiliy, 2015-05-01 01:50:59

SASS notation, what does + mean?

header h3 + p {
    font-size: 1.1em;
    margin-top: -0.8em;
    line-height: 1.5em;
  }

  header h4 + p,
  header h5 + p,
  header h6 + p {
    font-size: 0.9em;
    margin-top: -0.6em;
    line-height: 1.5em;
  }

Answer the question

In order to leave comments, you need to log in

1 answer(s)
E
Egor, 2015-05-01
@VasiliySidorenko63

this is standard css functionality.
in this case, header h6 + p means that the style will be applied to the p element that follows the header h6

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question