[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [Browser](./puppeteer.protocol.browser.md) > [Bounds](./puppeteer.protocol.browser.bounds.md) ## Protocol.Browser.Bounds interface Browser window bounds information Signature: ```typescript export interface Bounds ``` ## Properties | Property | Type | Description | | --- | --- | --- | | [height](./puppeteer.protocol.browser.bounds.height.md) | [integer](./puppeteer.protocol.integer.md) | The window height in pixels. | | [left](./puppeteer.protocol.browser.bounds.left.md) | [integer](./puppeteer.protocol.integer.md) | The offset from the left edge of the screen to the window in pixels. | | [top](./puppeteer.protocol.browser.bounds.top.md) | [integer](./puppeteer.protocol.integer.md) | The offset from the top edge of the screen to the window in pixels. | | [width](./puppeteer.protocol.browser.bounds.width.md) | [integer](./puppeteer.protocol.integer.md) | The window width in pixels. | | [windowState](./puppeteer.protocol.browser.bounds.windowstate.md) | [WindowState](./puppeteer.protocol.browser.windowstate.md) | The window state. Default to normal. |