V
V
velotourist2021-02-10 03:47:38
css
velotourist, 2021-02-10 03:47:38

What does the selector & + & {...} select?

What the SCSS selector selects & + & { ... }

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
Sergey delphinpro, 2021-02-10
@delphinpro

.block {
  &+& { color: red;}
}

=>
.block + .block {
  color: red;
}

those. the block element that comes after the block element.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question