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、65871c9809750e13096e696531afc0ad
#在手機上瀏覽時,標籤用於指定是否將網頁內容中的手機號碼顯示為撥號的超連結。
在iPhone 上預設值是:
<meta name="format-detection" content="telephone=yes"/>
如果你不希望手機自動將網頁中的電話號碼顯示為撥號的超鏈接,那麼可以這樣寫:
<meta name="format-detection" content="telephone=no"/>
2.4fcd90a205f0c78421c6eb4b13595b30
<meta name=”apple-mobile-web-app-capable” content=”yes” />
這apple-mobile-web-app-capable的作用就是刪除默認的蘋果工具列和選單列。 content有兩個值”yes”和”no”,當我們需要顯示工具列和選單列時,這個行meta就不用加了,預設就是顯示。
3.c71bf00e6792366514d14ff86672388a
<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中文網!
以上是php網頁在手機上左右不充滿的詳細內容。更多資訊請關注PHP中文網其他相關文章!