CSS :any-link selector
The `:any-link` CSS pseudo-class matches all elements that match `:link` or `:visited`
:dir() CSS pseudo-class
Matches elements based on their directionality. `:dir(ltr)` matches elements which are Left-to-Right. `:dir(rtl)` matches elements which are Right-to-Left.
CSS Filter Effects
Method of applying filter effects using the `filter` property to elements, matching filters available in SVG. Filter functions include blur, brightness, contrast, drop-shadow, grayscale, hue-rotate, invert, opacity, sepia and saturate.
:focus-visible CSS pseudo-class
The `:focus-visible` pseudo-class applies while an element matches the `:focus` pseudo-class, and the UA determines via heuristics that the focus should be specially indicated on the element (typically via a “focus ring”).
:focus-within CSS pseudo-class
The `:focus-within` pseudo-class matches elements that either themselves match `:focus` or that have descendants which match `:focus`.
:is() CSS pseudo-class
The `:is()` (formerly `:matches()`, formerly `:any()`) pseudo-class checks whether the element at its position in the outer selector matches any of the selectors in its selector list. It's useful syntactic sugar that allows you to avoid writing out all the combinations manually as separate selectors. The effect is similar to nesting in Sass and most other CSS preprocessors.
:placeholder-shown CSS pseudo-class
Input elements can sometimes show placeholder text as a hint to the user on what to type in. See, for example, the placeholder attribute in HTML5. The :placeholder-shown pseudo-class matches an input element that is showing such placeholder text.
CSS :read-only and :read-write selectors
:read-only and :read-write pseudo-classes to match elements which are considered user-alterable
Element.closest()
DOM method that returns the current element if it matches the given selector, or else the closest ancestor element that matches the given selector, or else null.
matches() DOM method
Method of testing whether or not a DOM element matches a given selector. Formerly known (and largely supported with prefix) as matchesSelector.
customelementregistry api: define: emoji and more unicode in element and attribute names and namespace prefix (valid names match html parser)
customelementregistry api: whendefined: emoji and more unicode in element and attribute names and namespace prefix (valid names match html parser)
document api: createattributens: emoji and more unicode in element and attribute names and namespace prefix (valid names match html parser)
document api: createattribute: emoji and more unicode in element and attribute names and namespace prefix (valid names match html parser)
document api: createelementns: emoji and more unicode in element and attribute names and namespace prefix (valid names match html parser)
document api: createelement: emoji and more unicode in element and attribute names and namespace prefix (valid names match html parser)
element api: `beforematch` event
element api: matches
element api: setattributenodens: emoji and more unicode in element and attribute names and namespace prefix (valid names match html parser)
element api: setattributens: requires `value` parameter to be `trustedhtml`, `trustedscript`, or `trustedscripturl` instance when trusted types enforced (matching attribute type)
element api: setattribute: emoji and more unicode in element and attribute names and namespace prefix (valid names match html parser)
element api: toggleattribute: emoji and more unicode in element and attribute names and namespace prefix (valid names match html parser)
css property: view-transition-name: match-element
css selector: `:any-link`: `:any-link` privacy: selector does not match `<link>` elements
css selector: `:empty`: matches elements with whitespace
css selector: `:first-child`: matches elements with no parent
css selector: `:last-child`: matches elements with no parent
css selector: `:link`: `:link` privacy: selector does not match `<link>` elements
css selector: `:nth-child()`: matches elements with no parent
css selector: `:nth-last-child()`: matches elements with no parent
css selector: `:only-child`: matches elements with no parent
css selector: `:visited`: `:visited` privacy: selector does not match `<link>` elements
html element: details: auto-opens when matched via page search
50 results found.