Reputation: 41
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
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
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