HTML <html> xmlns屬性用於指定文檔的xml名稱空間。
重要說明:該屬性主要在XHTML中是必需的,在HTML 4.01中無效,而在HTML 5中是可選的。
用法:
<html xmlns="http://www.w3.org/1999/xhtml">
屬性值:
- https://www.geeksforgeeks.org/它定義了要使用的名稱空間(用於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.geekforgeeks.org//xhtml">
<head>
<title>Title of the document</title>
</head>
<body style="text-align:center;">
<h1>GeeksForGeeks</h1>
<h2>HTML xmlns Attribute</h2>
The content of the document......
</body>
</html>
輸出:
支持的瀏覽器:<HTML> xmlns屬性支持的瀏覽器如下:
- 蘋果Safari 1.0
- 穀歌瀏覽器1.0
- Firefox 1.0
- Opera 1.0
- Internet Explorer 6.0
相關用法
- HTML <bdo> dir屬性用法及代碼示例
- HTML value屬性用法及代碼示例
- HTML low屬性用法及代碼示例
- HTML <a> rel屬性用法及代碼示例
- HTML name屬性用法及代碼示例
- HTML <map> name屬性用法及代碼示例
- HTML src屬性用法及代碼示例
- HTML for屬性用法及代碼示例
- HTML dir屬性用法及代碼示例
- HTML min屬性用法及代碼示例
- HTML rel屬性用法及代碼示例
- HTML alt屬性用法及代碼示例
- HTML max屬性用法及代碼示例
- HTML <li> value屬性用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <html> xmlns Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。