1.meta 태그 http-equiv 속성 구문 형식:
<meta http-equiv="expires" content="wed,20 Jun 2007 22:33:00 GMT"/> <!--expires 期限,可用于网页的到期时间,一旦网页过期,必须到服务器上重新传输-->
2.content-type (문자 집합 설정 표시) 페이지에서 사용하는 문자 집합 설정
<meta http-equiv="content-type" content="text/html" charset="utf-8"/>
3.keywords (키워드)
<meta http-equiv="Keywords" content="keywords1,keywords2...."/>
4.description (설명)
<meta http-equiv="description" content="this is my page"/>
5.format-Detection 형식 감지
1 페이지의 숫자를 전화번호로 인식 무시
<meta http-equiv="format-detection" content="telephone=no"/>
2 기기에서 이메일 주소를 인식하지 않도록 설정 , 클릭 후 자동으로 전송되지 않습니다.
<meta http-equiv="format-detection" content="email=no"/>
6.viewport
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
initial-scale:[0.0-1.0] 초기 스케일링 비율 정의
minimum-scale:[0.0-1.0] 최소 스케일링 비율 정의
maximum-scale:[ 0.0- 1.0] 최대 확대 비율 정의
user-scalable: yes/no 사용자가 페이지를 수동으로 확대/축소할 수 있는지 여부
위 내용은 모바일에서 헤더 태그를 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!