How can i enable css3 in my c# application WebBrowser element? Somewhat like in this thread?
I'm running IE 10 on windows 8.1
Browser.Version
says 11.0.9600.16476
How can i enable css3 in my c# application WebBrowser element? Somewhat like in this thread?
I'm running IE 10 on windows 8.1
Browser.Version
says 11.0.9600.16476
The css3 rendering in the WebBrowser userControl it depends on the version of IE that you have installed on your machine. So I reccomend you to upgrade to the latest version. If it dosen't work you need to change a registry Key: take a look here.
If you want use another WebBrowser like chrome try CefSharp(chromium porting for c#)
The WebBrowser element in WPF uses your local install of Internet Explorer to render the html, so if you have IE8, then it will support CSS 2.1 and a few CSS3 rules. IE 9 and 10 will support even more CSS3 rules, however not all of them.