The borderBoxSize
read-only property of the ResizeObserverEntry
interface returns an array containing the new border box size of the observed element when the callback is run.
The borderBoxSize
read-only property of the ResizeObserverEntry
interface returns an array containing the new border box size of the observed element when the callback is run.
An array containing objects with the new border box size of the observed element. The array is necessary to support elements that have multiple fragments, which occur in multi-column scenarios. Each object in the array contains two properties:
blockSize
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.
inlineSize
The length of the observed element's border box in the inline dimension. For boxes with a horizontal writing-mode
, this is the horizontal dimension, or width; if the writing-mode is vertical, this is the vertical dimension, or height.
Note: For more explanation of writing modes and block and inline dimensions, read Handling different text directions.
js
const resizeObserver = new ResizeObserver((entries) => { const calcBorderRadius = (size1, size2) => `${Math.min(100, size1 / 10 + size2 / 10)}px`; for (const entry of entries) { if (entry.borderBoxSize?.length > 0) { entry.target.style.borderRadius = calcBorderRadius( entry.borderBoxSize[0].inlineSize, entry.borderBoxSize[0].blockSize, ); } else { entry.target.style.borderRadius = calcBorderRadius( entry.contentRect.width, entry.contentRect.height, ); } } }); resizeObserver.observe(document.querySelector("div"));
Specification |
---|
Resize Observer # dom-resizeobserverentry-borderboxsize |
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
borderBoxSize |
84 | 84 | 9269–92Implemented as a single object representing a content box size, rather than an array of content box size objects. |
No | 70 | 15.4 | 84 | 84 | 9279–92Implemented as a single object representing a content box size, rather than an array of content box size objects. |
60 | 15.4 | 14.0 |
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserverEntry/borderBoxSize