Reputation: 19
Can anyone tell me what the squiggly lines underneath the css property mean (pictured below)? I would assume they mean that the browser doesn't understand what the properties are but in another project the same properties work as they should.
Upvotes: 0
Views: 62
Reputation: 19
I totally didn't think of this until today, but the reason why the browser was not recognizing the css properties is because the website was being forced into compatibility mode with the following meta tag.
<meta charset="utf-8" http-equiv="X-UA-Compatible" content="IE=9" />
fixed that and now it works as expected.
Upvotes: 1