css - How to make website responsive for feature phones (having very small screens) -
i'm developing web app feature phones in africa (non- smartphones screen size 128 x 160 px
(1.80")).
i need learn how make website responsive, or display screen size small. i'm aware regular css
queries dont work feature phones, other suggestions?
this:
https://developers.google.com/webmasters/mobile-sites/mobile-seo/other-devices/feature-phones?hl=en
is read on topic, it's vague me understand changes make in css
file (which using bootstrap
@ moment) appreciate help!
to make website responsive have use css3 @media queries. write @media
queries different screen sizes. @media queries doesn't support older version browsers. in case (non-smartphone) @media doesn't work. suggest create sub domain mobile phones http://m.website.com , use javascript redirect mobile version site if user opens http://website.com .
@media screen , (min-device-width: 128px) , (max-device-width: 160px) { /* put css code small screen */ }
some useful articals @media .
http://code.tutsplus.com/tutorials/quick-tip-a-crash-course-in-css-media-queries--net-14531
http://www.htmlgoodies.com/html5/tutorials/an-introduction-to-css3-media-queries.html
Comments
Post a Comment