I am designing a website using the CSS fluid layout (based on adaptive/responsive web design)

So I would not give anything as fixed value i.e. in px (only use %)

My question is ; While I do understand if I give the container a width of 100%, it would get calculated based on the browser window ( or viewport width) . But what about the font sizes like when we say 100% or 1 em for the body font, how will that be calculated ? Also are the visible font-sizes going to be same on desktop as well as mobile devices ?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Relative font-size units are calculated from user default font-size, you have to use media queries if you want to adjust font-size from screen dimensions.

On mobile device text appears smaller because resolution is greater, be careful!

link|improve this answer
Ok..Let's say I only have the desktop...So how will it be calculated on the desktop ? – testndtv Aug 8 '11 at 7:43
1em = 1x user default font-size (usually 16px) – MatTheCat Aug 8 '11 at 7:47
Right that is what i am looking for...So 16px equals 100% font size across all the browsers ? – testndtv Aug 8 '11 at 8:40
Right if 16px is the user default font-size. w3.org/QA/Tips/font-size – MatTheCat Aug 8 '11 at 9:39
feedback

Your Answer

 
or
required, but never shown

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