this blog is a collection of resouces i like, some post are created by myself (which will be in mine menu) and other are taken form online. source link will be place in every post.

I am working as web designer, wordpress and joomla customization. and i love open source. Don't you.

All the materials are keep for education and fun propose only.

Comment and feedback is always welcome.

Wednesday, July 4, 2012

css for iphone

CSS for iphone4
i have tried this
<link rel="stylesheet" media="only screen and (-webkit-min-device-pixel-ratio: 2)" type="text/css" href="iphone4.css" />

there are also other way,

<link rel="stylesheet" media="all and (max-device-width: 480px)" href="iphone.css">
<link rel="stylesheet" media="all and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait)" href="ipad-portrait.css">
<link rel="stylesheet" media="all and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape)" href="ipad-landscape.css">
<link rel="stylesheet" media="all and (min-device-width: 1025px)" href="ipad-landscape.css">

source::
http://stackoverflow.com/questions/3839809/detect-iphone-ipad-purely-by-css

No comments:

Post a Comment