code_bender
code_bender

Reputation: 19

Internet Explorer Developer tools CSS issues

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.

clip of Internet Explorer Developer Tools Styles

Upvotes: 0

Views: 62

Answers (1)

code_bender
code_bender

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

Related Questions