<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>刘钢 - 我是UED &#187; 表格</title>
	<atom:link href="http://www.iamued.com/tag/%e8%a1%a8%e6%a0%bc/feed" rel="self" type="application/rss+xml" />
	<link>http://www.iamued.com</link>
	<description>http://www.IamUED.com</description>
	<lastBuildDate>Tue, 07 Sep 2010 08:30:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>重新发现HTML表格</title>
		<link>http://www.iamued.com/qianduan/637.html</link>
		<comments>http://www.iamued.com/qianduan/637.html#comments</comments>
		<pubDate>Tue, 01 Dec 2009 14:39:22 +0000</pubDate>
		<dc:creator>RichieLiu</dc:creator>
				<category><![CDATA[前端开发]]></category>
		<category><![CDATA[页面实现]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[table]]></category>
		<category><![CDATA[w3c]]></category>
		<category><![CDATA[表格]]></category>

		<guid isPermaLink="false">http://www.iamued.com/?p=637</guid>
		<description><![CDATA[根据我最近的一些实践以及在和一些读者进行关于HTML表格的使用问题沟通之后，决定写这篇文章。总的来说，我注意到由于误导性信息，他们对于table的使用有种先入为主的厌恶。事实上很多人会说”我看到永远不应该使用表格”的说法，但是这绝对是错误的！这个建议只是针对使用HTML表格来定义网页的布局，但是表格在方便的排列数据信息行和列方面非常完美，而且如果你一定要在一个页面上显示表列数据，你就不得不使用它们！为什么不呢？然而，在这种情况下，一些人无视了用于table的某些HTML标签的存在并且不知道该如何正确的使用它们。

 
HTML有10个表格相关标签。下面是一个带有简介的列表，但是首先，文档要被正确的定义在HTML 4.01/XHTML 1或HTML 5下面:

&#60;caption&#62; 定义表格标题(4, 5)
&#60;col&#62; 为表格的列定义属性(4, 5)
&#60;colgroup&#62; 定义表格列的分组(4, 5)
&#60;table&#62; 定义表格(4, 5)
&#60;tbody&#62; 定义表格主体(4, 5)
&#60;td&#62; 定义一个单元格 (4, 5)
&#60;tfoot&#62; 定义表格的表注(底部)(4, 5)
&#60;th&#62; 定义表格的表头 (4, 5)
&#60;thead&#62; 定义表格的表头(4, 5)
&#60;tr&#62; 定义表格的行(4, 5)

一个基本的表格结构如下:

它包含一个标题、头部、主体和底部。正确的HTML元素顺序是：

&#60;table&#62;
&#60;caption&#62;
&#60;thead&#62;
&#60;tfoot&#62;
&#60;tbody&#62;

你也可以使用&#60;col&#62; 和&#60;colgroup&#62; 来定义表格的列或为列分组：

&#60;table&#62;
&#60;caption&#62;
&#60;colgroup&#62;
&#60;col&#62;
&#60;thead&#62;
&#60;tfoot&#62;
&#60;tbody&#62;

下面是一个正确的表格结构实例：

&#60;pre style=&#34;FONT-FAMILY: monospace&#34;&#62;&#60;span style=&#34;COLOR: #009900&#34;&#62;&#60;&#60;span style=&#34;COLOR: #000000; FONT-WEIGHT: bold&#34;&#62;table&#60;/span&#62; &#60;span style=&#34;COLOR: #000066&#34;&#62;border&#60;/span&#62;&#60;span style=&#34;COLOR: #66cc66&#34;&#62;=&#60;/span&#62;&#60;span style=&#34;COLOR: #ff0000&#34;&#62;&#34;1&#34;&#60;/span&#62;&#62;&#60;/span&#62;
	&#60;span style=&#34;COLOR: #009900&#34;&#62;&#60;&#60;span style=&#34;COLOR: #000000; FONT-WEIGHT: bold&#34;&#62;caption&#60;/span&#62;&#62;&#60;/span&#62;Table caption here&#60;span style=&#34;COLOR: #009900&#34;&#62;&#60;&#60;span style=&#34;COLOR: #66cc66&#34;&#62;/&#60;/span&#62;&#60;span [...]]]></description>
			<content:encoded><![CDATA[<p>根据我最近的一些实践以及在和一些读者进行关于HTML表格的使用问题沟通之后，决定写这篇文章。总的来说，我注意到由于误导性信息，他们对于table的使用有种先入为主的厌恶。事实上很多人会说”我看到永远不应该使用表格”的说法，但是这绝对是错误的！这个建议只是针对使用HTML表格来定义网页的布局，但是表格在方便的排列数据信息行和列方面非常完美，而且如果你一定要在一个页面上显示表列数据，你就不得不使用它们！为什么不呢？然而，在这种情况下，一些人无视了用于table的某些HTML标签的存在并且不知道该如何正确的使用它们。<br />
<span id="more-637"></span></p>
<p><span id="more-11555"> </span></p>
<p>HTML有10个表格相关标签。下面是一个带有简介的列表，但是首先，文档要被正确的定义在HTML 4.01/XHTML 1或HTML 5下面:</p>
<ul>
<li>&lt;caption&gt; 定义表格标题(4, 5)</li>
<li>&lt;col&gt; 为表格的列定义属性(4, 5)</li>
<li>&lt;colgroup&gt; 定义表格列的分组(4, 5)</li>
<li>&lt;table&gt; 定义表格(4, 5)</li>
<li>&lt;tbody&gt; 定义表格主体(4, 5)</li>
<li>&lt;td&gt; 定义一个单元格 (4, 5)</li>
<li>&lt;tfoot&gt; 定义表格的表注(底部)(4, 5)</li>
<li>&lt;th&gt; 定义表格的表头 (4, 5)</li>
<li>&lt;thead&gt; 定义表格的表头(4, 5)</li>
<li>&lt;tr&gt; 定义表格的行(4, 5)</li>
</ul>
<p>一个基本的表格结构如下:</p>
<p><img src="http://www.iamued.com/wp-content/uploads/auto_save_image/2009/12/223926c2V.png" alt="重新认识table" /></p>
<p>它包含一个标题、头部、主体和底部。正确的HTML元素顺序是：</p>
<ol>
<li>&lt;table&gt;</li>
<li>&lt;caption&gt;</li>
<li>&lt;thead&gt;</li>
<li>&lt;tfoot&gt;</li>
<li>&lt;tbody&gt;</li>
</ol>
<p>你也可以使用<em>&lt;col&gt;</em> 和<em>&lt;colgroup&gt;</em> 来定义表格的列或为列分组：</p>
<ol>
<li>&lt;table&gt;</li>
<li>&lt;caption&gt;</li>
<li>&lt;colgroup&gt;</li>
<li>&lt;col&gt;</li>
<li>&lt;thead&gt;</li>
<li>&lt;tfoot&gt;</li>
<li>&lt;tbody&gt;</li>
</ol>
<p>下面是一个正确的表格结构实例：</p>
<pre class="brush: xml;">
&lt;pre style=&quot;FONT-FAMILY: monospace&quot;&gt;&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;table&lt;/span&gt; &lt;span style=&quot;COLOR: #000066&quot;&gt;border&lt;/span&gt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;COLOR: #ff0000&quot;&gt;&quot;1&quot;&lt;/span&gt;&gt;&lt;/span&gt;
	&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;caption&lt;/span&gt;&gt;&lt;/span&gt;Table caption here&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;caption&lt;/span&gt;&gt;&lt;/span&gt;
	&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;colgroup&lt;/span&gt; &lt;span style=&quot;COLOR: #000066&quot;&gt;span&lt;/span&gt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;COLOR: #ff0000&quot;&gt;&quot;1&quot;&lt;/span&gt; &lt;span style=&quot;COLOR: #000066&quot;&gt;style&lt;/span&gt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;COLOR: #ff0000&quot;&gt;&quot;background:#DEDEDE;&quot;&lt;/span&gt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;/&lt;/span&gt;&gt;&lt;/span&gt;
	&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;colgroup&lt;/span&gt; &lt;span style=&quot;COLOR: #000066&quot;&gt;span&lt;/span&gt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;COLOR: #ff0000&quot;&gt;&quot;2&quot;&lt;/span&gt; &lt;span style=&quot;COLOR: #000066&quot;&gt;style&lt;/span&gt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;COLOR: #ff0000&quot;&gt;&quot;background:#EFEFEF;&quot;&lt;/span&gt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;/&lt;/span&gt;&gt;&lt;/span&gt;
 
	&lt;span style=&quot;FONT-STYLE: italic; COLOR: #808080&quot;&gt;&lt;!-- Table Header--&gt;&lt;/span&gt;
	&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;thead&lt;/span&gt;&gt;&lt;/span&gt;
	&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;tr&lt;/span&gt;&gt;&lt;/span&gt;
		&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;th&lt;/span&gt;&gt;&lt;/span&gt;Head 1&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;th&lt;/span&gt;&gt;&lt;/span&gt;
			&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;th&lt;/span&gt;&gt;&lt;/span&gt;Head 2&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;th&lt;/span&gt;&gt;&lt;/span&gt;
			&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;th&lt;/span&gt;&gt;&lt;/span&gt;Head 3&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;th&lt;/span&gt;&gt;&lt;/span&gt;
		&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;tr&lt;/span&gt;&gt;&lt;/span&gt;
	&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;thead&lt;/span&gt;&gt;&lt;/span&gt;
 
	&lt;span style=&quot;FONT-STYLE: italic; COLOR: #808080&quot;&gt;&lt;!-- Table Footer--&gt;&lt;/span&gt;
	&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;tfoot&lt;/span&gt;&gt;&lt;/span&gt;
		&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;tr&lt;/span&gt;&gt;&lt;/span&gt;
			&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;td&lt;/span&gt;&gt;&lt;/span&gt;Foot 1&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;td&lt;/span&gt;&gt;&lt;/span&gt;
			&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;td&lt;/span&gt;&gt;&lt;/span&gt;Foot 2&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;td&lt;/span&gt;&gt;&lt;/span&gt;
			&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;td&lt;/span&gt;&gt;&lt;/span&gt;Foot 3&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;td&lt;/span&gt;&gt;&lt;/span&gt;
		&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;tr&lt;/span&gt;&gt;&lt;/span&gt;
	&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;tfoot&lt;/span&gt;&gt;&lt;/span&gt;
 
	&lt;span style=&quot;FONT-STYLE: italic; COLOR: #808080&quot;&gt;&lt;!-- Table Body--&gt;&lt;/span&gt;
	&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;tbody&lt;/span&gt;&gt;&lt;/span&gt;
		&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;tr&lt;/span&gt;&gt;&lt;/span&gt;
			&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;td&lt;/span&gt;&gt;&lt;/span&gt;A&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;td&lt;/span&gt;&gt;&lt;/span&gt;
			&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;td&lt;/span&gt;&gt;&lt;/span&gt;B&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;td&lt;/span&gt;&gt;&lt;/span&gt;
			&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;td&lt;/span&gt;&gt;&lt;/span&gt;C&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;td&lt;/span&gt;&gt;&lt;/span&gt;
		&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;tr&lt;/span&gt;&gt;&lt;/span&gt;
		&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;tr&lt;/span&gt;&gt;&lt;/span&gt;
			&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;td&lt;/span&gt;&gt;&lt;/span&gt;D&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;td&lt;/span&gt;&gt;&lt;/span&gt;
			&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;td&lt;/span&gt;&gt;&lt;/span&gt;E&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;td&lt;/span&gt;&gt;&lt;/span&gt;
			&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;td&lt;/span&gt;&gt;&lt;/span&gt;F&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;td&lt;/span&gt;&gt;&lt;/span&gt;
		&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;tr&lt;/span&gt;&gt;&lt;/span&gt;
	&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;tbody&lt;/span&gt;&gt;&lt;/span&gt;
&lt;span style=&quot;COLOR: #009900&quot;&gt;&lt;&lt;span style=&quot;COLOR: #66cc66&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;COLOR: #000000; FONT-WEIGHT: bold&quot;&gt;table&lt;/span&gt;&gt;&lt;/span&gt;&lt;/pre&gt;
</pre>
<p>在浏览器中的结果如下图所示:</p>
<p><img src="http://www.iamued.com/wp-content/uploads/auto_save_image/2009/12/223927S82.png" alt="重新认识table" /></p>
<h3>关于表格的一些技巧</h3>
<ul>
<li>根据w3schools的解释和用法，在一个table定义中，<strong>&lt;tfoot&gt;元素必须出现在&lt;tbody&gt;之前</strong>，这样，浏览器就可以在接受到所有数据之前呈现表注了。另外，如果不是这个顺序，将<strong>不能</strong>通过W3C的HTML4和XHTML验证，无论你声明哪种DTD。(<a href="http://www.w3school.com.cn/tags/tag_tfoot.asp" target="_blank">了解更多</a>)。</li>
<li>在 HTML 4.01 中,表格的<strong>align</strong>和<strong>bgcolor</strong>属性不赞成使用，所以在HTML 5中不再有任何table的属性被支持（事实上，在XHTML 1.0 Strict DTD中已经不支持”align”和”bgcolor”属性了）；</li>
<li>所有主流浏览器都支持&lt;colgroup&gt; 标签，但是Firefox、Chrome 以及 Safari 仅支持 colgroup 元素的 span 和 width 属性；</li>
<li>css中的empty-cells:show|hide 可以设定空单元格是否显示边框。注意，这个<strong>需要设置在table而不是td/th中</strong>。IE6中比较容易遇到该问题；</li>
<li>css中的border-collapse:collapse | separate 可以设置表格的边框是否被合并成一个边框；</li>
<li>css中的border-spacing属性等效于table的cellspacing属性。</li>
</ul>
<p>为了实现现在所提倡的表现和结构分离的开发模式，前端观察建议将页面中所有与表现层有关的东东，都用CSS来控制，不用HTML自带的属性来控制页面的表现，而table是最容易被忽略的一个。</p>
<p>关于table的更多详细内容可以查看W3C的文档： <a href="http://www.w3.org/TR/html4/struct/tables.html" target="_blank">w3 Introduction to tables</a></p>
<p>最后留一个非常简单的问题给大家，CSS的哪个属性等效于table的cellpadding属性？</p>
<h2  class="related_post_title">您可能还关注的？</h2><ul class="related_post"><li><a href="http://www.iamued.com/qianduan/1547.html" title="[分享]W3C Javascript 最新Chm格式下载">[分享]W3C Javascript 最新Chm格式下载</a></li><li><a href="http://www.iamued.com/qianduan/642.html" title="CSS阴影详解 ">CSS阴影详解 </a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.iamued.com/qianduan/637.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
