Back to Content

Content-Security-Policy: style-src-attr directive

files/en-us/web/http/reference/headers/content-security-policy/style-src-attr/index.md

latest3.3 KB
Original Source

The HTTP {{HTTPHeader("Content-Security-Policy")}} (CSP) style-src-attr directive specifies valid sources for inline styles applied to individual DOM elements.

The directive does not set valid sources for {{HTMLElement("style")}} elements and {{HTMLElement("link")}} elements with rel="stylesheet". These are set using {{CSP("style-src-elem")}} (and valid sources for all styles may be set with {{CSP("style-src")}}).

<table class="properties"> <tbody> <tr> <th scope="row">CSP version</th> <td>3</td> </tr> <tr> <th scope="row">Directive type</th> <td>{{Glossary("Fetch directive")}}</td> </tr> <tr> <th scope="row">{{CSP("default-src")}} fallback</th> <td> <p> Yes. If this directive is absent, the user agent will look for the {{CSP("style-src")}} directive, and if both of them are absent, fallback to <code>default-src</code> directive. </p> </td> </tr> </tbody> </table>

Syntax

http
Content-Security-Policy: style-src-attr 'none';
Content-Security-Policy: style-src-attr <source-expression-list>;

This directive may have one of the following values:

  • 'none'
    • : No resources of this type may be loaded. The single quotes are mandatory.
  • <source-expression-list>
    • : A space-separated list of source expression values. Resources of this type may be loaded if they match any of the given source expressions. For this directive, the following source expression values are applicable:

style-src-attr can be used in conjunction with {{CSP("style-src")}}:

http
Content-Security-Policy: style-src <source>;
Content-Security-Policy: style-src-attr <source>;

Examples

Violation cases

Given this CSP header:

http
Content-Security-Policy: style-src-attr 'none'

…the inline style applied to the element below will not be applied:

html
<div style="display:none">Foo</div>

The policy would also block any styles applied in JavaScript by setting the style attribute directly, or by setting {{domxref("CSSStyleDeclaration.cssText", "cssText")}}:

js
document.querySelector("div").setAttribute("style", "display:none;");
document.querySelector("div").style.cssText = "display:none;";

Style properties that are set directly on the element's {{domxref("HTMLElement/style", "style")}} property will not be blocked, allowing users to safely manipulate styles via JavaScript:

js
document.querySelector("div").style.display = "none";

Note that using JavaScript might independently be blocked using the {{CSP("script-src")}} CSP directive.

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also

  • {{HTTPHeader("Content-Security-Policy")}}
  • {{CSP("style-src")}}
  • {{CSP("style-src-elem")}}
  • {{HTTPHeader("Link")}} header
  • {{HTMLElement("style")}}, {{HTMLElement("link")}}
  • {{cssxref("@import")}}
  • {{domxref("CSSStyleSheet.insertRule()")}}
  • {{domxref("CSSGroupingRule.insertRule()")}}
  • {{domxref("CSSStyleDeclaration.cssText")}}