6 ms·
I personally use them a lot. `+` is very useful to create separators, e.g.: p + p { border-top: 1px; } I also like to use `>` as much as possibl
by throwaddzuzxd 5y ago
I personally use them a lot. `+` is very useful to create separators, e.g.:
p + p {
border-top: 1px;
}
I also like to use `>` as much as possible instead of the implicit ` ` child selector, I find it more robust and less surprising.
I rarely use `~` though, but it has its uses.