How to fuck with IE: the right way.
Make a website in graphical form
Save it as a png
add a layer above the sitegraphic
fill that layer with white
adjust the transparency of that layer until you can see through it well
save and upload
IE will just see a blue screen
I have tweaked that on my new website.
I have a script which detects by PHP which browser you're using (the user won't even notice one thing, because it's all in the background).
If you use a real browser, you get feeded the css file, plus a seperate one, created for real browsers. It got this:
#logo { width: 225px; height: 55px; background: url("images/refalm.png") }
However, if you use IE, you get the CSS file, plus this:
#logo { width: 225px; height: 55px; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale src="images/refalm.png") }
Finally, I use this to insert the PNG into my website:
This clearly shows that Microsoft slows down progress of building websites and new web technologies.
Using a gif isn't usually an option, because it's outdated, and doesn't match the superb quality of PNG.