# VS Code css-rcurlyexpected error on style={style} in LWC HTML (false positive)

In a Lightning Web Component HTML file, VS Code flagged the dynamic binding &lt;div class="bar" style={style}&gt;[/div] with "} expected (css-rcurlyexpected)" and "at-rule or selector expected (css-ruleorselectorexpected)" errors. The reporter assumed the code could not be deployed until the errors were resolved, but the component actually deployed successfully anyway. VS Code's HTML language support validates the style attribute as static CSS and does not understand LWC template bindings, so the errors are a false positive.

## How to handle it

This is a VS Code false positive, not a code error: the built-in HTML language support validates the style attribute as static CSS and does not understand LWC's {style} template binding. It is safe to ignore  -  deployment works despite the squiggles. To silence it, turn off HTML CSS validation in VS Code settings: Extensions &gt; HTML &gt; Validate: Styles ("Controls whether the built-in HTML language support validates embedded styles"). Two later users confirmed this workaround helped. Source: https://github.com/trailheadapps/lwc-recipes/issues/122