Lately Google released a plugin for IE8, which allows users to run Google’s Chrome as a frame in IE8. In reply Microsoft stated, with plugin installed, the security risk will double. Which is quite thinkable as there will now be two browsers that needs to be patched. A developer can force the main render engine [...]
internet
IE specific CSS
Was experimenting a little the other day, and found a little hack for CSS, it only effects IE and leaves FF alone. CSS CODE [crayon lang="css"]* div .test { background-color: black; }[/crayon] HTML CODE [crayon lang="html"]<div class=”test”>Test</div>[/crayon] This will change the background color only in IE, and not in FF. It is usefull if your [...]