I like to use em, and tend to stay away from % because it tends to screw up the design easily, and pt, px, cm... Because they aren't that friendly to all devices. Am I right in doing so?

link|improve this question

+1 for adding all related tags. – NAVEED Dec 20 '10 at 12:16
Recent on p.se: programmers.stackexchange.com/questions/25895/… – JoseK Dec 20 '10 at 12:17
feedback

3 Answers

up vote 3 down vote accepted

There are reasons why css offers you a choice. So it isn't really a question of right or wrong. But if you are looking for a way to make your site more accessible by making fonts and elements scale easier, then you are on the right path. Go with em.

link|improve this answer
feedback

It depends. Using em links dimensions to the font size and using % links to the size of the container (and ultimately the screen). In some places one will be better than the other for achieving a consistent effect. I agree it is generally good to avoid absolute units, but px is useful for small dimensions (e.g. border widths, shims).

link|improve this answer
One thing that continues to bug me about px/em is margin setting. So often I want fixed width margins but the rest of my layout will be fluid :/ – Danjah Dec 20 '10 at 12:19
1  
@Danjah - There's nothing inherently wrong with px dimensions, just don't use them for things like column widths or text containers. – OrangeDog Dec 20 '10 at 12:22
49% column a, 49% column b, leaves 2% - but I want L/R margins at 10px not 1%, so I am left with a gap somewhere... – Danjah Dec 20 '10 at 12:27
1  
@Danjah - Don't over-constrain the widths then. Define the margins and allow the columns to expand to fill the space. – OrangeDog Dec 20 '10 at 12:29
I'm going to revisit this thread at a decent hour and enjoy giving that a whirl, thanks :) – Danjah Dec 20 '10 at 12:41
show 2 more comments
feedback

Yes. It scales, its easy to remember, and even easy to convert into other measurements for comparison :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.