Searching for the ~ character isn\'t easy. I was looking over some CSS and found this
~
.check:checked ~ .content { }
What does
General sibling combinator
The general sibling combinator selector is very similar to the adjacent sibling combinator selector. The difference is that the element being selected doesn't need to immediately succeed the first element, but can appear anywhere after it.
More info