<?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>炽炎之羽 &#187; 笔记</title>
	<atom:link href="http://zhiyu.org/category/notes/feed/" rel="self" type="application/rss+xml" />
	<link>http://zhiyu.org</link>
	<description>历经磨炼只会更坚强</description>
	<lastBuildDate>Sun, 18 Mar 2012 09:51:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>WordPress自动保存清理</title>
		<link>http://zhiyu.org/wordpress-file-clean-up/</link>
		<comments>http://zhiyu.org/wordpress-file-clean-up/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 05:34:29 +0000</pubDate>
		<dc:creator>炽炎之羽</dc:creator>
				<category><![CDATA[笔记]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://zhiyu.org/?p=603</guid>
		<description><![CDATA[前两天不知在谁那看到的一篇关于关闭WordPress自动保存的插件，不喜欢用插件，所以也去记那插件叫啥名字。只把那段清理自动保存的语句保存下来了，如下：

delete from wp_posts where post_type = 'revision' ;]]></description>
		<wfw:commentRss>http://zhiyu.org/wordpress-file-clean-up/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>WordPress Picasa相册插件Shashin</title>
		<link>http://zhiyu.org/shashin/</link>
		<comments>http://zhiyu.org/shashin/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 08:20:40 +0000</pubDate>
		<dc:creator>炽炎之羽</dc:creator>
				<category><![CDATA[笔记]]></category>
		<category><![CDATA[Picasa]]></category>
		<category><![CDATA[Shashin]]></category>

		<guid isPermaLink="false">http://zhiyu.org/?p=567</guid>
		<description><![CDATA[我是在腊八粥那看到的这个插件，不过他那篇文章字体小，图片都变成了叉叉，我重新编辑了一下。

值得提一下的，最新版本的这个插件用到了一个JS写的Highslide功能组件。下载shashin的时候会自动绑定，不需要特殊下载，这里只是交代一下。]]></description>
		<wfw:commentRss>http://zhiyu.org/shashin/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Import和Link的差别</title>
		<link>http://zhiyu.org/import-link/</link>
		<comments>http://zhiyu.org/import-link/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 03:31:49 +0000</pubDate>
		<dc:creator>炽炎之羽</dc:creator>
				<category><![CDATA[笔记]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Import]]></category>
		<category><![CDATA[Link]]></category>

		<guid isPermaLink="false">http://zhiyu.org/?p=458</guid>
		<description><![CDATA[看到淘宝网页中这样写使用的是import,而很多网站都是使用link，当然还有一些页面比较简单，流量很大的网站，是直接将CSS写在html代码中的？他们有什么区别？css用import还是link好?从经典论坛和另外一个网站大概了解了一下。

当然使用链接link和导入import的好处就是易于维护，但当网速比较慢的时候，会出现加载中断的情况，导致页面排版错误。]]></description>
		<wfw:commentRss>http://zhiyu.org/import-link/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>FF与IE在CSS中的差异</title>
		<link>http://zhiyu.org/ff-ie-css/</link>
		<comments>http://zhiyu.org/ff-ie-css/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 10:07:43 +0000</pubDate>
		<dc:creator>炽炎之羽</dc:creator>
				<category><![CDATA[笔记]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://zhiyu.org/?p=368</guid>
		<description><![CDATA[1 针对firefox ie6 ie7的css样式

现在大部分都是用!important来hack，对于ie6和firefox测试可以正常显示，但是ie7对!important可以正确解释，会导致页面没按要求显示！找到一个针对IE7不错的hack方式就是使用“*+html”，现在用IE7浏览一下，应该没有问题了。

现在写一个CSS可以这样：

#1 { color: #333; } /* Moz */

* html #1 { color: #666; } /* IE6 */

*+html #1 { color: #999; } /* IE7 */

那么在firefox下字体颜色显示为#333，IE6下字体颜色显示为#666，IE7下字体颜色显示为#999。]]></description>
		<wfw:commentRss>http://zhiyu.org/ff-ie-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>谷歌浏览器的隐藏功能</title>
		<link>http://zhiyu.org/google-chrome/</link>
		<comments>http://zhiyu.org/google-chrome/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 11:14:34 +0000</pubDate>
		<dc:creator>炽炎之羽</dc:creator>
				<category><![CDATA[笔记]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[浏览器]]></category>
		<category><![CDATA[谷歌]]></category>

		<guid isPermaLink="false">http://zhiyu.org/?p=356</guid>
		<description><![CDATA[Google浏览器大家已经都用着了，速度和性能都很不错。其实chrome还有一些很酷的功能隐藏在里面，下面列出一些google浏览器的about：页面，在地址栏输入下面的代码会有一些很实用的Chrome功能。

about:version - 显示当前版本 也可以是chrome-resource://about/]]></description>
		<wfw:commentRss>http://zhiyu.org/google-chrome/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>符合web标准的媒体播放器代码</title>
		<link>http://zhiyu.org/web-standards-player-code/</link>
		<comments>http://zhiyu.org/web-standards-player-code/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 18:52:25 +0000</pubDate>
		<dc:creator>炽炎之羽</dc:creator>
				<category><![CDATA[笔记]]></category>
		<category><![CDATA[代码]]></category>
		<category><![CDATA[媒体]]></category>
		<category><![CDATA[播放器]]></category>

		<guid isPermaLink="false">http://zhiyu.org/?p=303</guid>
		<description><![CDATA[再见了Embed，一些媒体播放器的符合web标准的代码

由于Embed标签是Netscape的私有财产，故一直未被W3C认可，对于各种媒体文件使用Embed标签是非标准的，如何改变？Elizabeth Castro的 Bye Bye Embed 一文对于各种媒体播放器给出了很好的符合web标准的代码。]]></description>
		<wfw:commentRss>http://zhiyu.org/web-standards-player-code/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CSS Hack之!important</title>
		<link>http://zhiyu.org/css-hack-important/</link>
		<comments>http://zhiyu.org/css-hack-important/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 10:04:14 +0000</pubDate>
		<dc:creator>炽炎之羽</dc:creator>
				<category><![CDATA[笔记]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[important]]></category>

		<guid isPermaLink="false">http://zhiyu.org/?p=274</guid>
		<description><![CDATA[最近在做一个网页，菜单栏在IE和其他(Mozilla、Opera等)中总是有些偏差。这是因为IE对盒之间距离的解释的bug造成的。我一直没有解决这个问题，其实用!important可以解决。

不过网上对!important的用法很多都说是IE不识别，很容易让初学者误解。IE并非不识别!important，只是不识别!important的优先级。举个例子：
]]></description>
		<wfw:commentRss>http://zhiyu.org/css-hack-important/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>各浏览器常用CSS Hack整理</title>
		<link>http://zhiyu.org/css-hack/</link>
		<comments>http://zhiyu.org/css-hack/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 05:31:44 +0000</pubDate>
		<dc:creator>炽炎之羽</dc:creator>
				<category><![CDATA[笔记]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[浏览器]]></category>

		<guid isPermaLink="false">http://zhiyu.org/?p=262</guid>
		<description><![CDATA[CSS Hack是在标准CSS没办法兼容各浏览器显示效果时才会用上的补救方法,在各浏览器厂商解析CSS没有达成一致前,我们只能用这样的方法来完成这样的任务.

我进行前端开发的时候,测试用的浏览器大致有: IE7, IE6, Opera9(文章撰写时版本为9.25 8825), Safari3(文章撰写时版本为3.0.4 523.15), Firefox2(文章撰写时版本为2.0.0.11).

在正常的 selector { property:value; } 的基础上常会根据具体情况为相同元素使用Hack以达到浏览器间统一.]]></description>
		<wfw:commentRss>http://zhiyu.org/css-hack/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>W3C XHTML1.0验证常见错误</title>
		<link>http://zhiyu.org/xhtml-verification-experience/</link>
		<comments>http://zhiyu.org/xhtml-verification-experience/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 05:24:34 +0000</pubDate>
		<dc:creator>炽炎之羽</dc:creator>
				<category><![CDATA[笔记]]></category>
		<category><![CDATA[W3C]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://zhiyu.org/?p=258</guid>
		<description><![CDATA[一、在 <div class=tzh>I am TZH!</div> 这段语句中有什么错误？

标点符号问题。这其实也是大家最容易忽视的问题，其实就是小小的两个引号，就造成了这个错误。虽然很多浏览器在不加引号的情况下仍然能正确识别渲染。但是这样想要通过严格的W3C XHTML国际标准是不可能的，请大家记住等号后面一定要接引号。正确写法：<div class="tzh">I am TZH!</div>

二、在 <span class="tzh">TZH is me!</span> 这段语句中有什么错误？

大小写注意。这和第一个问题一样，都是特别容易忽视的细节问题。在W3C标准中是绝对不允许大写的，其中我仍记得我在检测一段javascript代码的时候，由于为了让自己一目了然写出的onLoad也被判断成了错误，原因就是L不能大写。正确写法：<span class="tzh">TZH is me!</span>]]></description>
		<wfw:commentRss>http://zhiyu.org/xhtml-verification-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

