Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/38.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
是否接受PyCharm中的非标准css属性?_Css_Pycharm - Fatal编程技术网

是否接受PyCharm中的非标准css属性?

是否接受PyCharm中的非标准css属性?,css,pycharm,Css,Pycharm,我有以下规则 .selectable { /* double click -> select (not text-selection) */ -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none;

我有以下规则

    .selectable { /* double click -> select (not text-selection) */
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        cursor: pointer;
    }
在PyCharm编辑器中,除光标外的每个属性都会显示一条红色曲线,并显示消息Unknown CSS property-webkit touch callout

我知道user select是非标准的,但是有没有办法告诉PyCharm我已经理解了警告,请不要再唠叨我了?

您需要启用忽略特定于供应商的CSS属性选项:

您需要启用“忽略特定于供应商的CSS属性”选项: