puppeteer/website/versioned_docs/version-22.10.0/api/puppeteer.elementhandle.boundingbox.md

20 lines
493 B
Markdown
Raw Normal View History

---
sidebar_label: ElementHandle.boundingBox
---
# ElementHandle.boundingBox() method
This method returns the bounding box of the element (relative to the main frame), or `null` if the element is [not part of the layout](https://drafts.csswg.org/css-display-4/#box-generation) (example: `display: none`).
2022-10-24 14:31:12 +00:00
#### Signature:
```typescript
class ElementHandle {
boundingBox(): Promise<BoundingBox | null>;
}
```
**Returns:**
Promise&lt;[BoundingBox](./puppeteer.boundingbox.md) \| null&gt;