confirm_css_property_usage
Verify user consent for a specific CSS property, check browser compatibility, and receive implementation guidance with optional fallback solutions.
Instructions
Confirms user consent for using a specific CSS property and provides implementation guidance.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
css_property | Yes | CSS property name user wants to use | |
fallback_needed | No | Whether fallback solutions are needed | |
user_consent | Yes | User consent to use this CSS property |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"css_property": {
"description": "CSS property name user wants to use",
"type": "string"
},
"fallback_needed": {
"description": "Whether fallback solutions are needed",
"type": "boolean"
},
"user_consent": {
"description": "User consent to use this CSS property",
"type": "boolean"
}
},
"required": [
"css_property",
"user_consent"
],
"type": "object"
}