HTML/CSS——移动端Meta标签的一些设置

head标签是html的头标签,对于移动端的开发,head标签里面有很多我们值得注意的地方。Meta标签就是属性设置


<html lang = "">
<head>
    <title>title>
    <meta charset = "utf-8">
    
    
    <meta name="apple-mobile-web-app-status-bar-style" content="black">
    
    
    <meta http-equiv="Content-Type" content="text/html">
    
    <meta name="full-screen" content="yes">
    
    
    <meta name="browsermode" content="application">
    
    
    <meta name="x5-orientation" content="portrait">
    
    <meta name="x5-fullscreen" content="true">
    
    <meta name="x5-page-mode" content="app">
    
    <meta name="msapplication-tap-highlight" content="no">
head>
html>

你可能感兴趣的:(【HTML/CSS】)