#value-no-vendor-prefix

Disallow vendor prefixes for values.

禁止给值添加浏览器引擎前缀。

a { display: -webkit-flex; }
/**          ↑
 *  These prefixes */

#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); }