HTML <html> xmlns 속성

❮ HTML <html> 태그

예시

최소한의 필수 태그가 있는 간단한 XHTML 문서:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Title of the document</title>
</head>

<body>
The content of the document......
</body>

</html>

정의 및 사용

xmlns속성은 문서의 xml 네임스페이스를 지정합니다 .

참고: 속성 xmlns은 XHTML에서 필수이며 HTML 4.01에서는 유효하지 않으며 HTML5에서는 선택 사항입니다.

참고: http://w3.org 의 HTML 유효성 검사기 xmlns는 XHTML 문서에서 속성이 누락된 경우 불평하지 않습니다 . "xmlns=http://www.w3.org/1999/xhtml"이라는 네임스페이스가 기본이고 <html>포함하지 않아도 태그에 추가되기 때문입니다.


브라우저 지원

Attribute
xmlns Yes Yes Yes Yes Yes

통사론

<html xmlns="http://www.w3.org/1999/xhtml">

속성 값

Value Description
http://www.w3.org/1999/xhtml The namespace to use (for XHTML documents)

❮ HTML <html> 태그