[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [CSS](./puppeteer.protocol.css.md) > [CSSProperty](./puppeteer.protocol.css.cssproperty.md) ## Protocol.CSS.CSSProperty interface CSS property declaration data. Signature: ```typescript export interface CSSProperty ``` ## Properties | Property | Type | Description | | --- | --- | --- | | [disabled](./puppeteer.protocol.css.cssproperty.disabled.md) | boolean | Whether the property is disabled by the user (present for source-based properties only). | | [implicit](./puppeteer.protocol.css.cssproperty.implicit.md) | boolean | Whether the property is implicit (implies false if absent). | | [important](./puppeteer.protocol.css.cssproperty.important.md) | boolean | Whether the property has "!important" annotation (implies false if absent). | | [name](./puppeteer.protocol.css.cssproperty.name.md) | string | The property name. | | [parsedOk](./puppeteer.protocol.css.cssproperty.parsedok.md) | boolean | Whether the property is understood by the browser (implies true if absent). | | [range](./puppeteer.protocol.css.cssproperty.range.md) | [SourceRange](./puppeteer.protocol.css.sourcerange.md) | The entire property range in the enclosing style declaration (if available). | | [text](./puppeteer.protocol.css.cssproperty.text.md) | string | The full property text as specified in the style. | | [value](./puppeteer.protocol.css.cssproperty.value.md) | string | The property value. |