A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://webplatform.github.io/docs/apis/css-regions/Region below:

Region · WebPlatform Docs

Region Summary

The Region interface is available for any element that serves as a CSS region, whose flow-from CSS specifies it displays content from a named flow.

Properties
regionOverset
A region’s display state within a region chain.
Methods
getComputedRegionStyle
Returns styles calculated for an element as it appears within a region, including styles from @region rules applied to ranges within the element.
getRegionFlowRanges
Returns a series of Range objects that represent the fragments of DOM content that currently flow into the region.
Events

No events.

Examples

Determines if an element is currently set to behave as a region:

function isRegion(node) {
    
    if (! node.getRegionFlowRanges) return(false);
    
    if (node.getRegionFlowRanges() == null) return(false);
    
    return(true);
}
Usage
 Use the Region interface to determine whether any content flows through the region, what content currently displays, and any special CSS styling that applies.

The interface is still available for elements that change back to non-region elements, when their flow-from property becomes none.

Notes

For an overview of CSS Regions, see Using CSS Regions to flow content through a layout.

Related specifications
CSS Regions Module Level 1
W3C Working Draft
See also Related articles Regions External resources

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4