user2966632
user2966632

Reputation: 41

Is there any way to view css errors in ie11?

Say I have misprint in my css:
div { lolor: led; }

Chrome will display following messages in console:
Invalid CSS property name: lolor

How can I view something like this in IE11?

Upvotes: 4

Views: 1705

Answers (2)

DePhiless
DePhiless

Reputation: 56

Actually, the F12 tool will only show the css property underlined in red in the styles properties of the element but you will not have any message in the console.

Upvotes: 2

Deryck
Deryck

Reputation: 7658

Press F12

This site should help you a little: http://msdn.microsoft.com/en-us/library/ie/bg182326(v=vs.85).aspx

Honestly though they just use this to validate your CSS values: W3C Validator (link fixed)

Upvotes: 3

Related Questions