我正在做一個響應式網站,我有這個問題。一切運作良好,直到我選擇[input type =「text」]並從鍵盤出來,整個網站被調整大小,就像屏幕尺寸只是鍵盤上方的部分。我只是想保持正常的大小。我已經嘗試了所有解決方案提議在其他論壇stackoverflow,饅頭似乎沒有工作。手機鍵盤調整視口
有沒有人有任何想法如何解決這個問題?
<head>
<title>SchoolIn</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
//other code
UPDATE: 我要去嘗試解釋更好。
我有一個頭部分
//other code
<div class="head">
//Here is some text
</div>
//other code
然後內容片斷
//other code
<div class="container">
<div class="content">
//other code
<input type="text" ...... />
<input type="password" ..... />
<input type="submit" ..... />
</div>
</div>
//other code
所有元素都是個有沒什麼以像素爲單位。
當keyboad出來的標題,容器和內容div是redimensioned,而不是輸入字段和按鈕。無論如何,他們從他們的容器中出來,因爲容器越來越小,他們保持原來的大小。我不知道我是否明確自己。
問題是一樣的,當鍵盤出來時如何讓它保持原始大小?
你是如何解決你的問題的? (我想我已經試過所有可能的組合,包括你的,但沒有成功。:( - 丹尼爾Srp) – user2360915