About 1,610 results
Open links in new tab
  1. What does the "~" (tilde/squiggle/twiddle) CSS selector mean?

    May 28, 2012 · Searching for the ~ character isn't easy. I was looking over some CSS and found this .check:checked ~ .content { } What does it mean?

  2. What does ">", "+" and "~" do in CSS - CSSPortal

    Mar 15, 2015 · You have probably all seen these characters in your CSS files, so what exactly do they do? Before we answer that, the characters that we are going to look at today are: > (greater than), + …

  3. Subsequent-sibling combinator - CSS | MDN - MDN Web Docs

    Nov 7, 2025 · The subsequent-sibling combinator (~, a tilde) separates two selectors and matches all instances of the second element that follow the first element (not necessarily immediately) and share …

  4. CSS Entities - W3Schools

    Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, PHP, Python, Bootstrap, Java and XML.

  5. CSS Tutorial - W3Schools

    CSS References At W3Schools you will find complete CSS references of all properties and selectors with syntax, examples, browser support, and more.

  6. What does symbol tilde (~) denotes in CSS ? - GeeksforGeeks

    Feb 1, 2023 · In CSS, the symbol tilde (~) is known as Subsequent-sibling Combinator (also known as tilde or squiggle or twiddle or general-sibling selector). As the name suggests it is made of the "tilde" …

  7. CSS selectors and combinators - CSS | MDN - MDN Web Docs

    Nov 7, 2025 · CSS selectors are used to define a pattern of the elements that you want to select for applying a set of CSS rules on the selected elements. Combinators define the relationship between …

  8. What does symbol tilde (~) mean in CSS - Stack Overflow

    Mar 18, 2013 · The general sibling combinator is made of the "tilde" (U+007E, ~) character that separates two sequences of simple selectors. The elements represented by the two sequences …

  9. Understand '+', '>' and '~' symbols in CSS Selector - TechBrij

    May 25, 2011 · This article explains how to use different signs like space, + (plus), > (greater than) and ~ (tilde) in CSS selector and their differences. Before getting started, let us take a sample code to …

  10. CSS selectors - CSS | MDN - MDN Web Docs

    Apr 14, 2026 · The CSS selectors module defines the patterns to select elements to which a set of CSS rules are then applied along with their specificity. The CSS selectors module provides us with more …