<?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>web集结号 &#187; css</title>
	<atom:link href="http://www.songlecn.com/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.songlecn.com</link>
	<description>专注于web表现层技术</description>
	<lastBuildDate>Wed, 04 Nov 2009 02:46:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>修改及利用CSS，可以改善网站可访问性</title>
		<link>http://www.songlecn.com/2009/06/1067/</link>
		<comments>http://www.songlecn.com/2009/06/1067/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 02:29:03 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[可访问性]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=1067</guid>
		<description><![CDATA[　　一个客户的旧网站需要更新，使得它能够达到可访问性的标准。对三四年前的旧代码进行挖掘的想法根本没有吸引力，主要是因为我曾经使用的很多编程惯例已经不再适用，特别是从可访问性上来讲。我曾经使用绝对的字体大小，固定的页面宽度和表格来做版面设计和空间分配。    　　像那时建构的很多网站一样，我的客户的网站使用了Cascading Style Sheets (CSS)来格式化文本。它没有使用任何CSS的更加强有力的版面设计功能，也没有允许HTML设备独立，而这是CSS可访问性的主要优点之一。 　　问题是如何出现的？ 　　在我概述使网站更加具有可访问性的方法之前，了解现今众多的访问性问题的起因也许是很有帮助的： 　　对HTML肤浅的理解：在1990年代的互联网大发展时期中，所有人都开始建构网站。WYSIWYG编辑器使得几乎每个人都可以很容易地建构一个网站，而不用费心去学习HTML。但不幸的是，这种在使用上的便利带来了一些蹩脚的代码，对可访问性造成了妨碍。 　　HTML在设计方面的局限性：开发者和设计者经常会故意错用HTML标签，特别是&#60;table&#62;标签，来克服HTML在版面和设计上的局限性。这种设计方式也会带来妨碍可访问性的代码。 　　什么使得CSS更具有访问性？ 　　CSS在1996年出现，用来解决上述的问题。通过使用CSS，你可以将一个HTML文件的内容与有关它的表现形式或风格的信息分离开来。这就使你可以应用准确的格式化并达到想要得到的版面设计，而无需使用可能会让屏幕阅读器和专门的浏览器软件产生困惑的HTML代码。 　　例如，虽然HTML表格是用来排列表格式数据的，但他们也经常被用来排列对齐一个页面上的元素的。但是阅读器和例如语音合成器的软件要求有效的HTML代码。因此当他们遇到一个页面错误地使用了诸如一个表格的元素，产生的结果就会让使用者感到莫名其妙。 　　CSS的另一个可访问性的优点就是它允许使用者定义他们自己的风格单，这个风格单可以与网站的风格单共同工作。因此，例如一个使用者可以设定，所有通过&#60;p&#62;标签定义的文本都应该是1.5em Arial，即使这个网站的风格单表示它应该是18px Verdana Bold。 　　要注意用户定义的风格只有在用户的风格名称与HTML页面中的标签相符时才会起作用，这是很重要的。这就将确保兼容性的责任交到了开发者的手中。例如，如果用户的风格单指定&#60;p&#62;标签应显示1.5em Arial文本，但是HTML页面并不使用&#60;p&#62;标签来从风格单中调用一个风格（也许它使用&#60;font class=”bodytext”&#62;），用户对于&#60;p&#62;标签定义的风格将会被忽略。因此要确保你对你的标题和段落使用标准的HTML标签，这将减少用户定义的风格单被忽略的机会。 　　开始 　　如果你是从头开始建构一个新的网站，那么通过CSS来改善可访问性就会很容易。但你仍然可以轻松地将现有的网站转变为CSS形式。 　　步骤1：检查现有代码 　　为了更好地说明，我将用在表A中这个简单的HTML代码来代表一个使用CSS的页面。这个例子假设页面还没有使用CSS，不过你也可以使用相似的方法来评价一个基于CSS的站点。主要的不同点就是大多数的改变将发生在CSS文件中而不是HTML文件中。 　　步骤2：从HTML中去掉所有特殊风格标签 　　要在这个页面中加入CSS，我首先需要去掉所有要控制内容表现的标签。样本代码使用了字体标签来定义字体外观，风格和颜色。去掉这些元素使得样本代码如表B所示。 　　步骤3：从HTML中去掉并替换任何错用的标签 　　现在我要去掉任何错用的HTML标签。在样本代码之中，一个表格用来在页面的内容创建一个15象素的边缘，代码还使用&#60;br&#62;标签来创建段落。 　　在我去掉表格和&#60;br&#62;标签之后，我将他们替换为适当的标签。例如，我对页面标题使用&#60;h2&#62;标签，用&#60;p&#62;标签来显示段落。使用这些标准HTML标签使得之后的CSS的应用变得非常容易，而且与用户定义的风格单更加兼容。现在的样本代码如表C所示。 　　步骤4：建构一个CSS文件来覆盖风格信息 　　现在我已经从HTML文件中去掉了所有风格信息，我需要将这些信息转移至一个CSS文件中。CSS文件仅仅是一个存为.css扩展名的文本文件，因此它可以在任何一个文本编辑器中进行创建。我使用的是Dreamweaver MX。 　　为了使在HTML中应用CSS文件变得容易，我使用了名为p和h2的风格来对应标准HTML标签。我使用了可变的字体大小，使得用户可以轻松地在浏览器中增大或缩小字体大小。使用绝对大小可以防止浏览器对字体进行大小的调整（除了Netscape 6或以后的版本之外，它将不考虑绝对字体大小）。我还在需要的地方指定了字体的种类，重量和颜色。 　　要重新产生由HTML标记代码创建的版面，我需要将&#60;p&#62;和&#60;h2&#62;标签设置宽度为780象素。然而，由于我们的目的是将可访问性最大化，因此我将去掉宽度设置使得页面能符合浏览器窗口的大小。而且我将让HTML页面使用浏览器的缺省边缘，而不是用原始代码的&#60;table&#62;标签来重新创建15象素的空白，这也使得其它例如打印机等的设备来使用它的缺省边缘设置。 　　表D显示了我创建的CSS文件。我将它命名为Mystylesheet.css并将它放置在网站根目录下的一个风格文件夹之中。 　　步骤5：在HTML文件上附加新的风格单 　　在创建了CSS文件之后，我在HTML文件中插入了它的风格。因为HTML文件已经包括了所有在CSS文件中引用的标签(&#60;h2&#62;和&#60;p&#62;)，所以我只需要连接到HTML文件头部的风格单上就可以了。HTML文件从CSS文件中获得风格并将他们应用到&#60;h2&#62;和&#60;p&#62;标签当中，如表E所示。 　　步骤6：验证代码 　　整个过程的最后一个步骤就是验证HTML代码的可访问性。如果你对于CSS来说是个新手的话，你最好对CSS代码也进行验证。有很多种的工具都可以帮你对二者进行验证。 　　我使用Dreamweaver MX来检查我的样本代码的可访问性。你可以通过在文件菜单中选择Check Page然后选择Check Accessibility来实现。任何错误或是警告都会显示出来，还包括出现位置的行号以及对问题简要的解释。你可以在Dreamweaver MX的Reference工具中找到更多关于这些错误和警告的内容。你只要从Dreamweaver的Windows菜单中选择Reference然后从Book菜单中选择UsableNet Accessibility Reference就可以了。 　　此外，World Wide Web Consortium (W3C)提供了超过30个的可访问性评估工具的链接。W3C还提供了针对HTML和CSS的基于Web的免费验证器。 　　可访问性和简单的管理 　　虽然这里给出的例子是很简单的，但它说明了利用CSS使你的站点更加具有可访问性是非常容易的。而且，对于CSS的使用不止这一个优点而已。 　　基于CSS的网站要比仅仅只有HTML的网站要好管理得多。CSS文件中的风格上的变化可以应用到整个网站中而不需要改变网站中任何的HTML文件。而且CSS的使用缩小了每一个HTML文件的整体文件大小，因为所有的风格信息都存储在了CSS文件之中。 　　因此如果你想要改善可访问性的话，将其视为一个机会，而不是一个障碍。要了解更多关于CSS和可访问性的内容，你可以去看一看World Wide Web Consortium中的Web Accessibility Initiative。  ]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/06/1067/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(50)</title>
		<link>http://www.songlecn.com/2009/05/991/</link>
		<comments>http://www.songlecn.com/2009/05/991/#comments</comments>
		<pubDate>Fri, 22 May 2009 02:18:20 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=991</guid>
		<description><![CDATA[css模板系列(50)，第五十波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/05/991/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(49)</title>
		<link>http://www.songlecn.com/2009/05/984/</link>
		<comments>http://www.songlecn.com/2009/05/984/#comments</comments>
		<pubDate>Thu, 21 May 2009 02:34:09 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=984</guid>
		<description><![CDATA[css模板系列(49)，第四十九波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/05/984/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>css模板系列(48)</title>
		<link>http://www.songlecn.com/2009/05/972/</link>
		<comments>http://www.songlecn.com/2009/05/972/#comments</comments>
		<pubDate>Wed, 20 May 2009 02:12:41 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/2009/05/972/</guid>
		<description><![CDATA[css模板系列(48)，第四十八波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/05/972/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(47)</title>
		<link>http://www.songlecn.com/2009/05/965/</link>
		<comments>http://www.songlecn.com/2009/05/965/#comments</comments>
		<pubDate>Tue, 19 May 2009 02:13:59 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=965</guid>
		<description><![CDATA[css模板系列(47)，第七波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/05/965/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(46)</title>
		<link>http://www.songlecn.com/2009/05/956/</link>
		<comments>http://www.songlecn.com/2009/05/956/#comments</comments>
		<pubDate>Mon, 18 May 2009 01:57:58 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/2009/05/956/</guid>
		<description><![CDATA[css模板系列(46)，第四十七波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/05/956/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(45)</title>
		<link>http://www.songlecn.com/2009/05/949/</link>
		<comments>http://www.songlecn.com/2009/05/949/#comments</comments>
		<pubDate>Fri, 15 May 2009 00:10:22 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=949</guid>
		<description><![CDATA[css模板系列(45)，第四十五波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/05/949/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(44)</title>
		<link>http://www.songlecn.com/2009/05/942/</link>
		<comments>http://www.songlecn.com/2009/05/942/#comments</comments>
		<pubDate>Thu, 14 May 2009 01:58:40 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=942</guid>
		<description><![CDATA[css模板系列(44)，第四十四波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/05/942/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(43)</title>
		<link>http://www.songlecn.com/2009/05/932/</link>
		<comments>http://www.songlecn.com/2009/05/932/#comments</comments>
		<pubDate>Wed, 13 May 2009 02:27:34 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=932</guid>
		<description><![CDATA[css模板系列(43)，第四十三波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/05/932/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(42)</title>
		<link>http://www.songlecn.com/2009/05/923/</link>
		<comments>http://www.songlecn.com/2009/05/923/#comments</comments>
		<pubDate>Tue, 12 May 2009 02:16:35 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css模板]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=923</guid>
		<description><![CDATA[css模板系列(42)，第四十二波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/05/923/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(41)</title>
		<link>http://www.songlecn.com/2009/05/915/</link>
		<comments>http://www.songlecn.com/2009/05/915/#comments</comments>
		<pubDate>Mon, 11 May 2009 02:20:57 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=915</guid>
		<description><![CDATA[css模板系列(41)，第四十一波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/05/915/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(40)</title>
		<link>http://www.songlecn.com/2009/05/906/</link>
		<comments>http://www.songlecn.com/2009/05/906/#comments</comments>
		<pubDate>Fri, 08 May 2009 02:06:47 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=906</guid>
		<description><![CDATA[css模板系列(40)，第四十波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/05/906/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(39)</title>
		<link>http://www.songlecn.com/2009/05/897/</link>
		<comments>http://www.songlecn.com/2009/05/897/#comments</comments>
		<pubDate>Thu, 07 May 2009 02:10:09 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=897</guid>
		<description><![CDATA[css模板系列(39)，第三十九波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/05/897/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(38)</title>
		<link>http://www.songlecn.com/2009/05/888/</link>
		<comments>http://www.songlecn.com/2009/05/888/#comments</comments>
		<pubDate>Wed, 06 May 2009 02:17:39 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=888</guid>
		<description><![CDATA[css模板系列(38)，第三十八波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/05/888/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(36)</title>
		<link>http://www.songlecn.com/2009/05/870/</link>
		<comments>http://www.songlecn.com/2009/05/870/#comments</comments>
		<pubDate>Mon, 04 May 2009 01:58:20 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=870</guid>
		<description><![CDATA[css模板系列(36)，第三十六波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/05/870/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(35)</title>
		<link>http://www.songlecn.com/2009/04/863/</link>
		<comments>http://www.songlecn.com/2009/04/863/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 02:59:39 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=863</guid>
		<description><![CDATA[css模板系列(35)，第三十五波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/04/863/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(34)</title>
		<link>http://www.songlecn.com/2009/04/855/</link>
		<comments>http://www.songlecn.com/2009/04/855/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 02:11:23 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=855</guid>
		<description><![CDATA[css模板系列(34)，第三十四波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/04/855/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(33)</title>
		<link>http://www.songlecn.com/2009/04/847/</link>
		<comments>http://www.songlecn.com/2009/04/847/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 02:12:42 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=847</guid>
		<description><![CDATA[css模板系列(33)，第三十三波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/04/847/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(32)</title>
		<link>http://www.songlecn.com/2009/04/837/</link>
		<comments>http://www.songlecn.com/2009/04/837/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 02:31:45 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=837</guid>
		<description><![CDATA[css模板系列(32)，第三十二波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/04/837/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(31)</title>
		<link>http://www.songlecn.com/2009/04/827/</link>
		<comments>http://www.songlecn.com/2009/04/827/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 02:12:35 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=827</guid>
		<description><![CDATA[css模板系列(31)，第三十一波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/04/827/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(30)</title>
		<link>http://www.songlecn.com/2009/04/807/</link>
		<comments>http://www.songlecn.com/2009/04/807/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 02:53:14 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=807</guid>
		<description><![CDATA[css模板系列(30)，第三十波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/04/807/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(29)</title>
		<link>http://www.songlecn.com/2009/04/799/</link>
		<comments>http://www.songlecn.com/2009/04/799/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 02:20:44 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=799</guid>
		<description><![CDATA[css模板系列(29)，第二十九波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/04/799/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(28)</title>
		<link>http://www.songlecn.com/2009/04/791/</link>
		<comments>http://www.songlecn.com/2009/04/791/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 02:08:22 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=791</guid>
		<description><![CDATA[css模板系列(28)，第二十八波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/04/791/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(27)</title>
		<link>http://www.songlecn.com/2009/04/785/</link>
		<comments>http://www.songlecn.com/2009/04/785/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 03:14:12 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=785</guid>
		<description><![CDATA[css模板系列(27)，第七波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/04/785/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(26)</title>
		<link>http://www.songlecn.com/2009/04/775/</link>
		<comments>http://www.songlecn.com/2009/04/775/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 02:10:42 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=775</guid>
		<description><![CDATA[css模板系列(26)，第二十六波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/04/775/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(25)</title>
		<link>http://www.songlecn.com/2009/04/765/</link>
		<comments>http://www.songlecn.com/2009/04/765/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 02:29:09 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=765</guid>
		<description><![CDATA[css模板系列(25)，第二十五波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/04/765/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(24)</title>
		<link>http://www.songlecn.com/2009/04/755/</link>
		<comments>http://www.songlecn.com/2009/04/755/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 02:28:25 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=755</guid>
		<description><![CDATA[css模板系列(24)，第二十四波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/04/755/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(23)</title>
		<link>http://www.songlecn.com/2009/04/748/</link>
		<comments>http://www.songlecn.com/2009/04/748/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 02:21:55 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=748</guid>
		<description><![CDATA[css模板系列(23)，第二十三波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/04/748/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(22)</title>
		<link>http://www.songlecn.com/2009/04/740/</link>
		<comments>http://www.songlecn.com/2009/04/740/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 02:30:34 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=740</guid>
		<description><![CDATA[css模板系列(22)，第二十二波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/04/740/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css模板系列(21)</title>
		<link>http://www.songlecn.com/2009/04/734/</link>
		<comments>http://www.songlecn.com/2009/04/734/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 04:13:09 +0000</pubDate>
		<dc:creator>船长</dc:creator>
				<category><![CDATA[css模板]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.songlecn.com/?p=734</guid>
		<description><![CDATA[css模板系列(21)，第二十一波，内有静态文件html，css，图片或部分js文件，敬请参考学习，效果图：]]></description>
		<wfw:commentRss>http://www.songlecn.com/2009/04/734/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

