on my site i have 3 css

<link rel="stylesheet" type="text/css" media="screen" href="screen.css" />
 <link rel="stylesheet" type="text/css" media="print" href="print.css" />
 <link rel="stylesheet" type="text/css" media="handheld" href="handheld.css" />

i thought the media handheld will automatically load my site formated for devices

when i load my site with my android, i still see the "site.css" why it does not load the handheld.css?

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

Apparently Android/iPhone/Nokia browsers don't think that they are handhelds.

You should use media queries to detect devices.

link|improve this answer
so which one are handheld? so is it better to use the media queries to make sure all mobile is correct? – joel Dec 16 '11 at 14:35
handheld in my understanding are those running Opera Mini, but even with Opera Mini user may need to enable portable mode explicitly – Oleg Mikheev Dec 16 '11 at 14:38
oh thank your for the info – joel Dec 16 '11 at 14:40
feedback

Your Answer

 
or
required, but never shown

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