devtools_computed_css
Retrieve the final applied CSS values of any element to identify why it appears incorrectly, such as hidden display, wrong colors, or unresolved CSS variables.
Instructions
Return computed (final applied) CSS properties of an element.
Use this to understand why an element looks wrong: • Is it display:none or visibility:hidden? • What color / font is actually applied? • Is a CSS variable resolving correctly? • Are grid/flex dimensions what you expect?
Returns a dict of {property: computed_value}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| selector | Yes | CSS selector of the element to inspect | |
| properties | No | Comma-separated CSS property names to read, e.g. 'display,visibility,color,font-family,width,height,margin,padding'. Empty = a useful default set. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||