web technology is a way of life
For a few years now I’ve relied on zoom: 100% as my saving grace for finding lost elements in Internet Explorer. You see sometimes when you try to position an element on the screen, place a transparent <div> over a Flash object, or do something slighly out of the ordinary, IE will freak out and not display the object, hide it, or drop it to the bottom of z-index order.
Fortunately there’s a solution in the form of a hack called Zoom. Zoom is a CSS style that allows IE to zoom in on an element. Typically you don’t need to do this, and oddly enough when you do apply zoom even at the non-zoomed level of 100% it forces Internet Explorer to re-evaluate it’s CSS styling. So now you can make sure that these lost elements come back to where they are supposed to be.
So when in doubt, use zoom.
<!--[if IE]>
<style type="text/css">
#element{
zoom: 100%;
}
</style>
<![endif]-->
The Livescribe Pulse smartpen gets an app store. This little pen is quite amazing, and it just shows that the business model of an app store is already changing the market for every type of electronic device. So when does my…
The Ghostwire (DSiWare) game looks great and reminds me a lot of Fatal Frame.
FloorPlanner is an interesting bit of software built in Flash that allows you design your home in 2D and view in 3D.
The new Stargate Universe [Philosphocal] teaser looks awesome. I stopped watching Atlantis a bit ago because it got boring, I hope this pumps up the energy as BSG did. It has Lou Diamond Philips and Ming-Na in it, that could make…
Here’s a plethora of well designed RSS Feed icons for free!
One Response for "Lost something in IE? Zoom to the rescue!"
thanx for the tip.
Karl