Using the tool CSS Lint, I have identified 3 errors in a specific CSS file:
https://i.sstatic.net/meG9E.png
The errors are found in the following CSS code snippet:
a.btn,
:not(li.menu_icon a.btn),
.k-button.btn,
input[type=submit].btn,
input[type=button].btn,
button[type=submit].btn:not(.gridAddBtn),
button[type=button].btn:not(.gridAddBtn),
a[name=butonWorkFlow].btn {
background-image: none;
min-width: 90px;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
However, as someone with basic knowledge of CSS, I am unsure how to correct these errors. Can anyone provide guidance on this?