Skip to content

Files

Latest commit

 

History

History
85 lines (57 loc) · 1.01 KB

selector-attribute-quotes.md

File metadata and controls

85 lines (57 loc) · 1.01 KB

Pattern: Malformed quotes for attribute value

Issue: -

Description

Require or disallow quotes for attribute values.

Examples

"always"

Attribute values must always be quoted.

The following patterns are considered violations:

[title=flower] {}
[class^=top] {}

The following patterns are not considered violations:

[title] {}
[target="_blank"] {}
[class|="top"] {}
[title~='text'] {}
[data-attribute='component'] {}

"never"

Attribute values must never be quoted.

The following patterns are considered violations:

[target="_blank"] {}
[class|="top"] {}
[title~='text'] {}
[data-attribute='component'] {}

The following patterns are not considered violations:

[title] {}
[title=flower] {}
[class^=top] {}

Further Reading