General sibling
Expression Studio 3.0
Specifies a general sibling relationship between selector elements.
The general sibling combinator is a "tilde" character (~) that separates two simple selectors. White space is not significant.
A selector of the form "E~F" matches element F when it follows sibling element E in the document tree, ignoring non-element nodes (such as text nodes and comments). Elements E and F must share the same parent but E need not directly precede F. To match the first child of the parent, use the :first-child pseudo-class.
This selector is defined in Cascading Style Sheets (CSS), Level 3 (CSS3).