CSS overflow property
Originally a single property for controlling overflowing content in both horizontal & vertical directions, the `overflow` property is now a shorthand for `overflow-x` & `overflow-y`. The latest version of the specification also introduces the `clip` value that blocks programmatic scrolling.
hidden attribute
The `hidden` attribute may be applied to any element, and effectively hides elements similar to `display: none` in CSS.
Small, Large, and Dynamic viewport units
Viewport units similar to `vw` and `vh` that are based on shown or hidden browser UI states to address shortcomings of the original units. Currently defined as the `sv*` units (`svb`, `svh`, `svi`, `svmax`, `svmin`, `svw`), `lv*` units (`lvb`, `lvh`, `lvi`, `lvmax`, `lvmin`, `lvw`), `dv*` units (`dvb`, `dvh`, `dvi`, `dvmax`, `dvmin`, `dvw`) and the logical `vi`/`vb` units.
WAI-ARIA Accessibility features
Method of providing ways for people with disabilities to use dynamic web content and web applications.
console api: `dir()` static method: `options.showhidden` parameter
document api: hidden
elementinternals api: ariahidden
element api: ariahidden
htmlelement api: hidden
css property: border-style: hidden
css property: content-visibility: hidden
css property: display: none: setting `display: none` on an `<option>` element hides it from the dropdown.
css property: overflow-x: hidden
css property: overflow-y: hidden
css property: overflow: hidden
css property: visibility: hidden
html element: input: `type="hidden"`
html attribute: hidden
html attribute: hidden: `until-found` value
19 results found.