Netbeans show css variables as error

青春壹個敷衍的年華 提交于 2019-12-23 16:30:10

问题


My Netbeans IDE show me error when I'm using css variables. For example, this lines of code will return an error:

:root {
    --main-bg-color: #dad66f;
}

.title {
    color: var(--main-bg-color);
}

I found this solution online: https://bugzilla-attachments-262769.netbeans.org/bugzilla/attachment.cgi?id=160370 But I don't know how to install this patch. Anyone have idea how I can stop showing this code as an error?

Thanks :)

来源:https://stackoverflow.com/questions/49225680/netbeans-show-css-variables-as-error

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!