Vixen
02b45cc4
csharp
public enum SimpleSelectorKind

What one part of a compound selector tests.

No guide page documents this yet — the page shows what the code says about itself.

Fields and properties (9)

  • Universal

    * — matches anything.

  • Type

    A tag name.

  • Id

    An #id.

  • Class

    A .class.

  • Attribute

    An [attribute] test.

  • State

    A state such as :hover.

  • Position

    :first-child, :last-child, :only-child or :nth-child().

  • Not

    :not() — none of the nested selectors may match.

  • Is

    :is() or :where() — one of the nested selectors must match.

Used by (6)

  • RuleIndexVixen.Ui.Styling
  • SelectorCompilerVixen.Ui.Styling
  • SelectorMatcherVixen.Ui.Styling
  • SimpleSelectorVixen.Ui.Styling
  • StyleInvalidatorVixen.Ui.Styling
  • StyleRuleSetVixen.Ui.Styling