puppeteer/new-docs/puppeteer.protocol.css.cssproperty.md
2020-07-13 14:01:35 +01:00

28 lines
1.6 KiB
Markdown

<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [puppeteer](./puppeteer.md) &gt; [Protocol](./puppeteer.protocol.md) &gt; [CSS](./puppeteer.protocol.css.md) &gt; [CSSProperty](./puppeteer.protocol.css.cssproperty.md)
## Protocol.CSS.CSSProperty interface
CSS property declaration data.
<b>Signature:</b>
```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 <code>false</code> if absent). |
| [important](./puppeteer.protocol.css.cssproperty.important.md) | boolean | Whether the property has "!important" annotation (implies <code>false</code> 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 <code>true</code> 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. |