码迷,mamicode.com
首页 > Web开发 > 详细

xhtml与html的区别

时间:2016-06-02 00:43:00      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:

实际上,XHTML 与 HTML 4.01 标准没有太多的不同。
它们最主要的不同:

1.XHTML 元素必须被正确地嵌套。
错误:<p><span>this is example.</p></span>
正确:<p><span>this is example.</span></p>

2.XHTML 元素必须被关闭。
错误:<p>this is example.
正确:<p>this is example.</p>

3.标签名必须用小写字母。
错误:<P>this is example.<P>
正确:<p>this is example.</p>
3.1空标签也必须被关闭
错误:<br>
正确:<br/>

4.XHTML 文档必须拥有根元素。
所有的 XHTML 元素必须被嵌套于 <html> 根元素中。

xhtml与html的区别

标签:

原文地址:http://www.cnblogs.com/Dream2317201116/p/5551417.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!