Comment on Show HN: CSS Speedrun – A small game to test and improve your CSS knowledgeparentComments−throwaddzuzxd4yI 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.
Comments
I personally use them a lot. `+` is very useful to create separators, e.g.:
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.