I used to use the 'font-sizes in ems' approach (mostly for IE users) and some CSS hacks to have the same font size on systems where screen is set to 120dpi. I know that forcing the same font size in 120 dpi is not good in usability terms, but this is the way I should get it done.
I'm curious is it good to switch to pixels instead of ems, as far as I see all my target browsers (IE7,8; FF 3.6, Chrome 5, Opera 10.6, Safari Win) support full page zoom.
I have the following restrictions:
- No IE6 support
- Font size should be the same in 96dpi and 120dpi (I usually have many graphics that requires that text should be in some particular size).
Should I switch?
Thanks in advance!