웹표준 검사시 Error 메세지
본문
웹표준 검사를 실행해서 다른 오류들은 다 잡았는데요. 아래 두가지는 어떻게 잡아야 할지 모르겠네요.
meta 태그가 있는 아래부분 같은데요.
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
이 부분을 어떻게 수정해야 할까요?
※ 웹표준검사 에레메세지 내용
-
Error: Attribute
name
not allowed on elementmeta
at this point.d>↩<body>↩<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">↩ ↩
-
Error: Element
meta
is missing one or more of the following attributes:itemprop
,property
.d>↩<body>↩<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">↩ ↩
답변 2
<body>
여기에 넣으시면 안되구요
</body>
<head>
// head 안쪽에 넣으세요
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
</head>
body 가 아닌
<body><meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"></body>
head 에 넣어야 합니다.
<head><meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"></head><body>...</body>