Internet Explorer, you’re killing me!
Web Development No Comments »Well not literally, but why does it have to be so hard to work with!!!
Web development on a Mac, in my opinion, is better from a standards point of view. I build and test on Firefox primarily, using the web developer tools (and other great add-ons). Then when I’m generally happy with the templates and CSS I try them out in IE and keep a separate style sheet to ‘fix’ what IE broke.
This week I’ve been plagued with an ongoing issue of IE freezing on printing. I’ve built an application form module for a client website (all PHP) and through the CMS they can view all completed application forms using a print stylesheet so they can print it out. For some strange reason IE would hang when processing this page, but not always.
Well I’ve discovered what was causing it (at least in my CSS). Here it is:
#dform textarea {
font-size:12px;
}
Take that font definition out and all is well. But WHY??