您好,登錄后才能下訂單哦!
這篇文章主要介紹php網頁在手機上左右不充滿的方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
php網頁在手機上左右不充滿
網頁在手機端顯示,需要設置一條meta元數據(元數據又稱中介數據、中繼數據,為描述數據的數據)。這樣網頁的大小就會適應我們的手機屏幕,在html的head標簽內添加:
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"/>
為了讓網頁在手機端寬度充滿屏幕,我們可以設置body的css樣式為
body{ padding: 0; margin: 0; width: 100%; }
另附meta標簽其它常用的屬性用法解析:
1、<meta name="format-detection"/>
在手機上瀏覽時,該標簽用于指定是否將網頁內容中的手機號碼顯示為撥號的超鏈接。
在 iPhone 上默認值是:
<meta name="format-detection" content="telephone=yes"/>
如果你不希望手機自動將網頁中的電話號碼顯示為撥號的超鏈接,那么可以這樣寫:
<meta name="format-detection" content="telephone=no"/>
2.<meta name="apple-mobile-web-app-capable"/>
<meta name=”apple-mobile-web-app-capable” content=”yes” />
這apple-mobile-web-app-capable的作用就是刪除默認的蘋果工具欄和菜單欄。content有兩個值”yes”和”no”,當我們需要顯示工具欄和菜單欄時,這個行meta就不用加了,默認就是顯示。
3.<meta name="apple-mobile-web-app-status-bar-style"/>
作用是控制狀態欄顯示樣式:
<meta name=”apple-mobile-web-app-status-bar-style” content=”default” /> <meta name=”apple-mobile-web-app-status-bar-style” content=”black” /> <meta name=”apple-mobile-web-app-status-bar-style” content=”black-translucent” />
default:默認; black:純黑; black-translucent:半透明灰色
以上是php網頁在手機上左右不充滿的方法的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。