When I write [if ! webkit]
in my .less file It is throwing me an error as it cannot convert it to css code.
There was also an [if webkit]
in my code so I have written
@media all and (-webkit-min-device-pixel-ratio:1) {
html, body {
background-color: black;
}
}
rather than,
html, body {
[if webkit]background-color:black;
}
And it is working correctly, So I need a similar solution for [if ! webkit]
Can anybody help me on this ?