Skip to content

Latest commit

 

History

History
21 lines (12 loc) · 424 Bytes

no-browser-hacks.md

File metadata and controls

21 lines (12 loc) · 424 Bytes

Pattern: Use of unexpected hack

Issue: -

Description

Disallows browser hacks that are irrelevant to the browsers you are targeting, using stylehacks.

Examples

The following patterns are considered violations:

a { color/*\**/: pink\9; }

As this hack targets IE7-8.

Further Reading