> ## Documentation Index
> Fetch the complete documentation index at: https://docs.extractbase.com/llms.txt
> Use this file to discover all available pages before exploring further.

# BoundingBox

Represents the bounding box of an element on the page.
All coordinates and dimensions are in CSS pixels, relative to the top-left of the viewport.

## Definition

```graphql theme={null}
object BoundingBox {
  x: Float
  y: Float
  width: Float
  height: Float
}
```

## Fields

### `x`

[Float](/reference/graphql/scalars/float)

The x-coordinate of the top-left corner of the element.

### `y`

[Float](/reference/graphql/scalars/float)

The y-coordinate of the top-left corner of the element.

### `width`

[Float](/reference/graphql/scalars/float)

The width of the element.

### `height`

[Float](/reference/graphql/scalars/float)

The height of the element.
