I have the following code in an .scss file:
.device_content_div {
width: calc(100% – 169px);
margin-left: 204px;
}
It gets processed by Gulp. When I open the relevant page in the Chrome inspector it gets an Invalid Property alert.
However, when I type the exact same code, manually in the inspector, there is no alert and the code works as it should.
The same thing goes for Firefox and Safari. I have tried adding it as a insert in the html page itself, and as an 'unprocessed' plain .css file, but the same thing occurs. I have made sure there are spaces between the operator and the numbers, but to no avail. I'm really stuck here.
How can this happen, and how can I fix this?

