XHTML 元素 - 語法規(guī)則:
1、XHTML 元素必須正確嵌套
2、XHTML 元素必須始終關(guān)閉
3、XHTML 元素必須小寫
4、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>
本站關(guān)鍵詞:大連網(wǎng)站建設(shè)