当前位置: 首页 > 图文教程 > 网页制作 > CSS样式表 > XHTML与HTML之间的区别

CSS样式表
CSS的margin边界叠加深度剖析图文演示
CSS中Float(浮动)相关技巧文章
惊现学习CSS应该注意的方法
使用text-align:justify实现两端对齐一例
CSS整体布局声明的一些使用技巧
推荐深入理解css中的position定位和z-index属性
固定表格的高度超过指定高度就隐藏的方法
推荐个Css的filter常用滤波器属性及语句大全
用css滤镜实现的文字描边效果的代码
用css实现的带阴影的表格效果的代码
推荐个不错的表单Input的高级用法11例
flash幻灯片需要先激活ActiveX控件才能使用的又一个办法
DIV+CSS作网页容易犯的错误小结
ul+li及css制作韩国风格菜单代码
div布局的自由伸展三栏式版面的代码
几乎被设计师遗忘了的标签fieldset legend
不用javascript实现带序号的表格隔行换色的效果
用CSS实现基本条状图表效果
用javascript来控制 链接的target 属性的代码
多浏览器css兼容分析小结

CSS样式表 中的 XHTML与HTML之间的区别


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-10-12   浏览: 128 ::
收藏到网摘: n/a

翻译:Linyupark

You can prepare yourself for XHTML by starting to write strict HTML.
你可以开始通过书写严格的HTML代码来为你的XHML之行做好准备


--------------------------------------------------------------------------------

How To Get Ready For XHTML
如何为XHTML做准备呢?
XHTML is the next generation of HTML, but it will of course take some time before browsers and other software products are ready for it.
XHTML是HTML的下一代语言,但它将理所当然的在新的浏览器和其他的相关软件产品出现之前延迟一段时间才能普及。

In the meantime there are some important things you can do to prepare yourself for it. As you will learn from this tutorial, XHTML is not very different from HTML 4.01, so bringing your code up to 4.01 standards is a very good start. Our complete HTML 4.01 reference can help you with that.
其间,去做一些重要的事情来为它做准备。就像你可以从这教程学到东西一样,XHTML与HTML4.01相差不多,所以把你的代码改写成符合HTML4.01标准是一种非常好的开始,我们完整的HTML4.01参考可以帮助你解决这个问题。

In addition, you should start NOW to write your HTML code in lowercase letters, and NEVER make the bad habit of skipping end tags like the </p>.
另外,现在你应该开始用小写字母来书写你的HTML代码,并且永远不要再像以前那样有跳过像</p>这样的结尾标签的坏习惯。

Happy coding!
快乐的编码!


--------------------------------------------------------------------------------

The Most Important Differences:
非常重要的区别:
XHTML elements must be properly nested
XHTML元素必须合理嵌套
XHTML documents must be well-formed
XHTML文档必须格式正确
Tag names must be in lowercase
标签名称必须是小写
All XHTML elements must be closed
所有XHTML元素必须关闭

--------------------------------------------------------------------------------

Elements Must Be Properly Nested
元素必须合理嵌套
In HTML some elements can be improperly nested within each other like this:
在HTML中一些元素可以不使用正确的相互嵌套像这样:

<b><i>This text is bold and italic</b></i>In XHTML all elements must be properly nested within each other like this:
在XHTML所有元素必须合理的相互嵌套像这样:

<b><i>This text is bold and italic</i></b>Note: A common mistake in nested lists, is to forget that the inside list must be within a li element, like this:
注意:在列表嵌套的时候经常会犯一个错误,就是忘记了在列表中插入的新列表必须在一个<li>标记中,像这样:

<ul>
<li>Coffee</li>
<li>Tea
<ul>
<li>Black tea</li>
<li>Green tea</li>
</ul>
<li>Milk</li>
</ul>This is correct:
这才是正确的:

<ul>
<li>Coffee</li>
<li>Tea
<ul>
<li>Black tea</li>
<li>Green tea</li>
</ul>
</li>
<li>Milk</li>
</ul>Notice that we have inserted a </li> tag after the </ul> tag in the "correct" code example.
在这段正确的代码示例中,要注意在</ul>之后加了一个</li>标签


--------------------------------------------------------------------------------

Documents Must Be Well-formed
文档格式必须合格
All XHTML elements must be nested within the <html> root element. All other elements can have sub (children) elements. Sub elements must be in pairs and correctly nested within their parent element. The basic document structure is:
所有的XHTML标记必须被嵌套使用在<html> 根标签之中。所有其他的标签可以有自己的子标签。位于父标签之内的子标签也必须成对且正确的嵌套使用。一个网页的基本结构是:

<html>
<head> ... </head>
<body> ... </body>
</html>

--------------------------------------------------------------------------------

Tag Names Must Be In Lower Case
标签名称必须是小写
This is because XHTML documents are XML applications. XML is case-sensitive. Tags like <br> and <BR> are interpreted as different tags.
这是因为XHTML文档是XML应用程序,XML是区分大小写的,像<br>和<BR>会被认为是两种不同的标签。

This is wrong:
这是错误的:

<BODY>
<P>This is a paragraph</P>
</BODY>This is correct:
这是正确的:

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

--------------------------------------------------------------------------------

All XHTML Elements Must Be Closed
所有的XHTML元素必须关闭
Non-empty elements must have an end tag.
非空元素必须有关闭标签。

This is wrong:
这是错误的:

<p>This is a paragraph
<p>This is another paragraphThis is correct:
正确是这样:

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

--------------------------------------------------------------------------------

Empty Elements Must Also Be Closed
空的元素也必须关闭
Empty elements must either have an end tag or the start tag must end with />.
空的元素也必须有一个结束标签或者开始标签用/>结束。

This is wrong:
这是错误的:

This is a break<br>
Here comes a horizontal rule:<hr>
Here''''s an image <img src="happy.gif" alt="Happy face">This is correct:
这是正确的:

This is a break<br />

Here comes a horizontal rule:<hr />Here''''s an image <img src="happy.gif" alt="Happy face" />
IMPORTANT Compatibility Note:
注意兼容性的关键:
To make your XHTML compatible with today''''s browsers, you should add an extra space before the "/" symbol like this: <br />, and this: <hr />.
为了使你的XHTML能够兼容现在的浏览器,你必须在/符号之前加一个特殊的空格,就像这样:<br />和这样:<hr />