On this page

Interface ResizeObserverSize

The ResizeObserverSize interface of the Resize Observer API is used by the ResizeObserverEntry interface to access the box sizing properties of the element being observed.

MDN Reference

interface ResizeObserverSize {
    blockSize: number;
    inlineSize: number;
}
Index

Properties

blockSize: number

The blockSize read-only property of the ResizeObserverSize interface returns the length of the observed element's border box in the block dimension.

MDN Reference

inlineSize: number

The inlineSize read-only property of the ResizeObserverSize interface returns the length of the observed element's border box in the inline dimension.

MDN Reference

Was this helpful?
SDK JS
Reference
ResizeObserverSize