# selector-attribute-quotes Require or disallow quotes for attribute values. ```css [target="_blank"] {} /** ↑ ↑ * These quotes */ ``` The [`fix` option](../../../docs/user-guide/usage/options.md#fix) can automatically fix most of the problems reported by this rule. ## Options `string`: `"always"|"never"` ### `"always"` Attribute values _must always_ be quoted. The following patterns are considered violations: ```css [title=flower] {} ``` ```css [class^=top] {} ``` The following patterns are _not_ considered violations: ```css [title] {} ``` ```css [target="_blank"] {} ``` ```css [class|="top"] {} ``` ```css [title~='text'] {} ``` ```css [data-attribute='component'] {} ``` ### `"never"` Attribute values _must never_ be quoted. The following patterns are considered violations: ```css [target="_blank"] {} ``` ```css [class|="top"] {} ``` ```css [title~='text'] {} ``` ```css [data-attribute='component'] {} ``` The following patterns are _not_ considered violations: ```css [title] {} ``` ```css [title=flower] {} ``` ```css [class^=top] {} ```