We are making April 1st prank in our office, and wanted to flip our corporate website upside down for several hours tomorrow :)
My patch works everywhere but not in IE... Can anyone help ?
<script type="text/javascript">
document.body.style.MozTransform = 'rotate(180deg)';
document.body.style['-webkit-transform'] = 'rotate(180deg)';
</script>
body { -webkit-transform: rotate(180deg); }should be a fairly quick way to do it. – thirtydot Apr 1 '11 at 0:12