I have been reading a few articles about why em's are better than px in typography. And the base has to be in %, best is even to have body{ font-size:62.5%; }.
One of the better articles I could find is located here: http://kyleschaeffer.com/best-practices/css-font-size-em-vs-px-vs-pt-vs/
Basically it is says that px does not scale well on websites and devices. I have always done typography in px, and have never found any issues. I have also been working with some CSS framework and some wordpress themes, and I always see that just the normal px is used.
Now I see that most of the articles are written em's are mostly from some years ago, around, I wanted to know if it is still true that px doesn't scale well, or is this not a point anymore for the modern browsers and devices.
On a side-note. I have even read and seen on some sites that people even go so far to do all of their styling in em's. For example the padding and the margins are done in em's.
Is this necessary if you want to have a good scaling website.