I am developing a phonegap application for Android and I have designed the UI using jquery mobile. I want know what is the best way to alter the font-size of the text for different devices dynamically using css or javascript.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Media queries are your friend! In your CSS doc, use code similar to below (example is for the iphone 3-4 + Retina):
You'll need to provide a few such queries to target the majority of devices (ipad, iphone, etc) but that should get you started! |
|||
|
Take a look at media queries. For instance, the nested CSS rules here will only apply to devices which are at least 500 pixels wide:
|
|||
|

