I have a website, what has 1000px width on desktop computers. I want to show it 100% width on every mobile device.
I was tried this code, but failed on Android 2.2.x :
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
I use this doctype code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
Edited: I tried this code too, this is irrelevant parameter.
<!DOCTYPE html>
I want to see full width of my page on every mobile device in every viewport (landscape and portrait too).
What will be the solution?