<?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; comparison</title>
	<atom:link href="http://www.zhanggy.com/tag/comparison/feed" rel="self" type="application/rss+xml" />
	<link>http://www.zhanggy.com</link>
	<description></description>
	<lastBuildDate>Fri, 27 Jan 2012 06:13:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Vista 版本比较</title>
		<link>http://www.zhanggy.com/blog/vista-versions-comparison</link>
		<comments>http://www.zhanggy.com/blog/vista-versions-comparison#comments</comments>
		<pubDate>Mon, 16 Feb 2009 12:35:21 +0000</pubDate>
		<dc:creator>zhanggy</dc:creator>
				<category><![CDATA[Operating system]]></category>
		<category><![CDATA[comparison]]></category>
		<category><![CDATA[vista]]></category>

		<guid isPermaLink="false">http://www.zhanggy.com/?p=162</guid>
		<description><![CDATA[]]></description>
		<wfw:commentRss>http://www.zhanggy.com/blog/vista-versions-comparison/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Office 2007 版本比较</title>
		<link>http://www.zhanggy.com/blog/microsoft-office-2007-versions-comparison</link>
		<comments>http://www.zhanggy.com/blog/microsoft-office-2007-versions-comparison#comments</comments>
		<pubDate>Mon, 16 Feb 2009 08:30:11 +0000</pubDate>
		<dc:creator>zhanggy</dc:creator>
				<category><![CDATA[Application software]]></category>
		<category><![CDATA[comparison]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.zhanggy.com/?p=157</guid>
		<description><![CDATA[]]></description>
		<wfw:commentRss>http://www.zhanggy.com/blog/microsoft-office-2007-versions-comparison/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>windows 2003各版本区别对比</title>
		<link>http://www.zhanggy.com/blog/comparison-of-windows-server-2003-editions</link>
		<comments>http://www.zhanggy.com/blog/comparison-of-windows-server-2003-editions#comments</comments>
		<pubDate>Tue, 10 Jun 2008 14:55:36 +0000</pubDate>
		<dc:creator>zhanggy</dc:creator>
				<category><![CDATA[Operating system]]></category>
		<category><![CDATA[comparison]]></category>
		<category><![CDATA[windows 2003]]></category>

		<guid isPermaLink="false">http://www.zhanggy.com/?p=135</guid>
		<description><![CDATA[使用这组表比较 Windows Server 2003 系列的特性，这组表按功能组织。 特性 图例: = 支持全部功能 = 支持部分功能 = 不支持该功能 特性 标准版 企业版 数据中心版 Web 版 硬件规格 64位支持1 热插拔内存2, 3 非均一内存访问 (NUMA)3 数据中心计划 2 GB最大内存 4 GB最大内存 32 GB最大内存4 64 GB最大内存5 1 TB最大内存6 2-路 SMP 4-路 SMP 8-路 SMP 32-路 SMP 64-路 SMP 目录服务 Active Directory Microsoft Identity Integration Server 2003 (MIIS) [...]]]></description>
		<wfw:commentRss>http://www.zhanggy.com/blog/comparison-of-windows-server-2003-editions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>理解position:relative 与 position:absolute</title>
		<link>http://www.zhanggy.com/blog/understand-position-relative-and-position-absolute</link>
		<comments>http://www.zhanggy.com/blog/understand-position-relative-and-position-absolute#comments</comments>
		<pubDate>Sun, 16 Dec 2007 14:25:38 +0000</pubDate>
		<dc:creator>zhanggy</dc:creator>
				<category><![CDATA[Web building]]></category>
		<category><![CDATA[comparison]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.zhanggy.com/?p=99</guid>
		<description><![CDATA[注：本文转载自http://vanivan.com/atom.asp?cateID=1 position 有三个值，static（静态）、relative（相对）、absolute（绝对）；由于static是所有页面元素的默认值，因此设置元素的定位类型时几乎不用这个值，除非用于覆盖之前的定义。对于后两者，一般应用：在一个相对定位的元素里面放置一个绝对定位的元素，如图： 子元素B可以通过top、right、bottom、left来精确定位，定位的参考目标就是其具有相对定位属性的父级元素A；并且设置这些偏移后，产生的空隙会被后面的元素填充（如果后面的元素足够尺寸的话）。由于B元素具有absolute定位属性，相当于从文档流中抽取出来，浮动在原平面排版上，形成 “层”，如果有多个“层”，层与层之间就必然会有谁覆盖谁，谁在上谁在下的竞争关系，因此，为解决这个竞争，就产生了 z-index（空间坐标系的Z轴）属性，谁的值大，谁就在上面。另外，如果父级元素A没有设置relative，那么B元素就会以body标签当作参考点。 对于具有 position:relative属性的元素A，其top、right、bottom、left四个方向的位置偏移就会以该元素的原来位置作为参考点，而不是像上面说的，以具有relative定位属性的父级元素或body作为参考点。在设置了偏移后产生了空隙，其周围的元素并不会填充这些空隙，即使它们足够尺寸(演示)。 &#60;!DOCTYPE HTML PUBLIC &#34;-//W3C//DTD HTML 4.0 Transitional//EN&#34;&#62; &#60;HTML&#62; &#60;HEAD&#62; &#60;TITLE&#62; Position:relative &#60;/TITLE&#62; &#60;style type=&#34;text/css&#34;&#62; ul { list-style-type:none; height:300px;margin:0px; width:300px} li { width:100px; text-align:center; float:left;height:100px; line-height:100px} #position { width:40px} .csstext { padding:6px; background-color:#ccc;border:1px solid #999; margin:10px 0px; height:auto; line-height:20px; color:blue} &#60;/style&#62; &#60;script&#62; function po(){ document.getElementById('testid').style.position='relative'; // document.getElementById(&#34;testid&#34;).style.filter=&#34;Alpha(Opacity=80)&#34;; } [...]]]></description>
		<wfw:commentRss>http://www.zhanggy.com/blog/understand-position-relative-and-position-absolute/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 与 Mac OS 桌面环境对比</title>
		<link>http://www.zhanggy.com/blog/windows-mac-os-desktop</link>
		<comments>http://www.zhanggy.com/blog/windows-mac-os-desktop#comments</comments>
		<pubDate>Sat, 08 Dec 2007 03:10:16 +0000</pubDate>
		<dc:creator>zhanggy</dc:creator>
				<category><![CDATA[Operating system]]></category>
		<category><![CDATA[comparison]]></category>
		<category><![CDATA[MAC]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.zhanggy.com/?p=97</guid>
		<description><![CDATA[这两家操作系统历来都是你争我夺，且不说其功能，只是在用户界面上就互不相让，Gizmodo用十多年来两家的重要的操作系统版本的用户界面展现了两家在用户界面上你争我夺的发展历程。]]></description>
		<wfw:commentRss>http://www.zhanggy.com/blog/windows-mac-os-desktop/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>营销、公关、广告、品牌的区别！</title>
		<link>http://www.zhanggy.com/blog/advertising-marketing-public-brand</link>
		<comments>http://www.zhanggy.com/blog/advertising-marketing-public-brand#comments</comments>
		<pubDate>Fri, 07 Dec 2007 14:20:59 +0000</pubDate>
		<dc:creator>zhanggy</dc:creator>
				<category><![CDATA[Other articles]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[comparison]]></category>

		<guid isPermaLink="false">http://www.zhanggy.com/?p=96</guid>
		<description><![CDATA[营销、公关、广告、品牌的区别，下面这幅图是对其的最佳解释：（转自：Ads of the world） You’re a man and you see a gorgeous woman at a party.You go up to her and say, “I’m fantastic in bed,” That’s —Direct Marketing. 你在一个聚会上看见一女生。你走过去对她说，“我的床上功夫非比寻常”。我们称之为直销。 You’re at a party with a bunch of friends and see a gorgeous woman. One of your friends goes up to her and pointing at [...]]]></description>
		<wfw:commentRss>http://www.zhanggy.com/blog/advertising-marketing-public-brand/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

