ResizeObserverSize: blockSize property
The blockSize
read-only property of the ResizeObserverSize
interface returns the length of the observed element's border box in the block dimension. For boxes with a horizontal writing-mode
, this is the vertical dimension, or height; if the writing-mode is vertical, this is the horizontal dimension, or width.
Value
A decimal representing the block size in pixels.
Examples
In this example we return an array of sizing information with ResizeObserverEntry.contentBoxSize
. The blockSize
property returns the block dimension size of the observed element.
const resizeObserver = new ResizeObserver((entries) => {
for (const entry of entries) {
const elemSize = entry.contentBoxSize[0];
console.log(elemSize.blockSize);
}
});
resizeObserver.observe(divElem);
Specifications
Browser compatibility
|
Desktop |
Mobile |
|
Chrome |
Edge |
Firefox |
Internet Explorer |
Opera |
Safari |
WebView Android |
Chrome Android |
Firefox for Android |
Opera Android |
Safari on IOS |
Samsung Internet |
blockSize |
84 |
84 |
69 |
No |
70 |
15.4 |
84 |
84 |
79 |
60 |
15.4 |
14.0 |