Skip to content

Files

Latest commit

 

History

History
61 lines (39 loc) · 1005 Bytes

media-feature-colon-space-before.md

File metadata and controls

61 lines (39 loc) · 1005 Bytes

Pattern: Malformed whitespace before : in media feature

Issue: -

Description

Require a single space or disallow whitespace before the colon in media features.

Examples

"always"

There must always be a single space before the colon.

The following patterns are considered violations:

@media (max-width:600px) {}
@media (max-width: 600px) {}

The following patterns are not considered violations:

@media (max-width :600px) {}
@media (max-width : 600px) {}

"never"

There must never be whitespace before the colon.

The following patterns are considered violations:

@media (max-width :600px) {}
@media (max-width : 600px) {}

The following patterns are not considered violations:

@media (max-width:600px) {}
@media (max-width: 600px) {}

Further Reading