Categories
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
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 a Question
731 491 924 answers to any question