+ 1
HTML for mobiles.
I made a very simple web page on a smartphone and opened it with chrome there. It shows the page as it is on a tablet, laptop or PC-screen. The letters are very small on a mobile, hence not readable . Is there any option for HTML to adapt its appearance to smartphone screens?
4 Answers
+ 6
<meta name="viewport" content="width=device-width, initial-scale=1">
+ 21
meta viewport....
( <meta name=viewport content=width=device-width, initial-scale=1,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no> )
+ 4
And for better fitting in all devices put width of objects in % and height in px ( most apps and website use this )
0
THX to all for immediate help. It works well.