I am using CSSLint for the first time and trying it now. When I write following CSS
.div {
box-sizing: border-box;
border: 1px solid red;
padding: 5px;
width: 100px;
}
Then when I run Warning - The box-sizing property isn't supported in IE6 and IE7.
I also changed "box-sizing": false
to "box-sizing": true
in my .csslintrc
file.
But I am still getting this warning. How can I solve this problem?
box-sizing
at all. – Eley--ignore
, perhaps? – Eley