No, it is not possible to make Internet Explorer 8 follow -webkit
CSS properties with the above described <meta>
tag.
Internet Explorer 8 uses Trident as its rendering engine, not Webkit. Therefore you cannot make it render pages the exact way Webkit does.
The above <meta>
tag is to force Internet Explorer 8 and onwards to render the page using rendering code from Internet Explorer 8.
In fact, using this tag will prevent border-radius
from working in Internet Explorer 9 as it will tell Internet Explorer 9 to render the page as Internet Explorer 8 did (without border-radius
support).
However, you can use a JavaScript solution such as CurvyCorners to "add" support for the border-radius
CSS3 property until Internet Explorer 9 is released. Note that while this is approximate the behavior of border-radius
in unsupported browsers, it might cause other unforeseen problems.