-
-
Notifications
You must be signed in to change notification settings - Fork 362
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vs code gives warning about modern-normalize #67
Comments
Not an issue. Checking the VSCode documentation, you could to turn off CSS validation for your workspace in order to not get these warnings anymore: https://code.visualstudio.com/Docs/languages/CSS#_syntax-verification-linting |
Off course there are non standard properties... This is what this library is about. More distracting is that this issue is open for a half a year. |
Is it okay to add the standard properties VS is asking for with the same value as the one highlighted? This was the change I did. button,
[type='button'],
[type='reset'],
[type='submit'] {
-webkit-appearance: button;
appearance: button; /* Added line */
}
[type='search'] {
-webkit-appearance: textfield; /* 1 */
appearance: textfield; /* Added line*/
outline-offset: -2px; /* 2 */
} |
The idea is to use the non-standard properties to fix stuff only on the browsers that need fixing. Just ignore the VS errors or exclude this file from VS checking. |
I dont know if this is really an issue or not, but nonetheless kind of distracting warnings
The text was updated successfully, but these errors were encountered: