TAG | ie
While developing I use FireFox as my main browser. Mostly during the end of the project IE bugfixing is scheduled.
Today I was having difficulties (again) with z-indexes in IE7. Solution? Very easy using jQuery…
Just have this in your script and it will be okay:
$(function() { var zIndexNumber = 1000; $('div').each(function() { $(this).css('zIndex', zIndexNumber); zIndexNumber -= 10; }); });
Wanna know more? Read the article that brought me my solution!
10
Getting your font-sizes right…
0 Comments | Posted by henjo in (x)html, css, design, ie, usabillity
Ever wondered why IE shows bigger headings than other browsers? If you are like me and walking your website releases the FF – Safari – IE7 – IE6 way, you’ll notice fontsizes are screwed up here and there. Of course you can write different stylesheets, what I did for a while. But recently I ran into this article that actually explains a good deal how to get stuff right, the nice way.
Enjoy reading!
Here a good article on negative margins, and some nice IE fixes.
Basecamp
Get me at Technoratie
Typo3










