mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 03:17:30 -04:00
.. | ||
index.js | ||
README.md |
value-no-vendor-prefix
Disallow vendor prefixes for values.
a { display: -webkit-flex; }
/** ↑
* These prefixes */
This rule will only warn for prefixed standard values, and not for prefixed proprietary or unknown ones.
Options
true
The following patterns are considered warnings:
a { display: -webkit-flex; }
a { max-width: -moz-max-content; }
a { background: -webkit-linear-gradient(bottom, #000, #fff); }
The following patterns are not considered warnings:
a { display: flex; }
a { max-width: max-content; }
a { background: linear-gradient(bottom, #000, #fff); }