XHTML 元素

2021-06-28 14:54 更新

XHTML 元素是以 XML 格式編寫的 HTML 元素。

XHTML 元素 - 語法規(guī)則

  • XHTML 元素必須正確嵌套
  • XHTML 元素必須始終關(guān)閉
  • XHTML 元素必須小寫
  • XHTML 文檔必須有一個根元素

XHTML 元素必須正確嵌套

在 HTML 中,某些元素可以不正確地彼此嵌套在一起,就像這樣:

<b><i>This text is bold and italic</b></i>

在 XHTML 中,所有元素必須正確地彼此嵌套,就像這樣:

<b><i>This text is bold and italic</i></b>

XHTML 元素必須始終關(guān)閉

這是錯誤的:

<p>This is a paragraph
<p>This is another paragraph

這是正確的:

<p>This is a paragraph</p>
<p>This is another paragraph</p>

空元素也必須關(guān)閉

這是錯誤的:

A break: <br>
A horizontal rule: <hr>
An image: <img src="happy.gif" alt="Happy face">

這是正確的:

A break: <br />
A horizontal rule: <hr />
An image: <img src="happy.gif" alt="Happy face" />

XHTML 元素必須小寫

這是錯誤的:

<BODY>
<P>This is a paragraph</P>
</BODY>

這是正確的:

<body>
<p>This is a paragraph</p>
</body>
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號