<?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>上海SEO &#187; css</title>
	<atom:link href="http://www.cndozz.com/mytags/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cndozz.com</link>
	<description>又一个 WordPress 博客</description>
	<lastBuildDate>Mon, 02 Nov 2009 03:30:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>CSS hack：针对IE6，IE7，firefox显示不同效果</title>
		<link>http://www.cndozz.com/article/css-hack-for-ie6-ie7-firefox/</link>
		<comments>http://www.cndozz.com/article/css-hack-for-ie6-ie7-firefox/#comments</comments>
		<pubDate>Tue, 28 Aug 2007 03:56:58 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[工具资源]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://herbashow.cn/?p=182</guid>
		<description><![CDATA[做网站时经常会用到，衡量一个DIV+CSS架构师的水平时，这个也很重要... ]]></description>
			<content:encoded><![CDATA[<p>做网站时经常会用到，衡量一个DIV+CSS架构师的水平时，这个也很重要。</p>
<p>区别不同浏览器的CSS hack写法：</p>
<p>区别IE6与FF： <br />
 background:orange;*background:blue;</p>
<p>区别IE6与IE7： <br />
 background:green !important;background:blue;</p>
<p>区别IE7与FF： <br />
 background:orange; *background:green;</p>
<p>区别FF，IE7，IE6： <br />
 background:orange;*background:green !important;*background:blue;</p>
<p>注：IE都能识别*;标准浏览器(如FF)不能识别*；</p>
<p>IE6能识别*，但不能识别 !important, <br />
 IE7能识别*，也能识别!important; <br />
 FF不能识别*，但能识别!important;</p>
<table border="0" cellspacing="0" width="500">
<tbody>
<tr>
<td></td>
<td>IE6</td>
<td>IE7</td>
<td>FF</td>
</tr>
<tr>
<td>*</td>
<td>√</td>
<td>√</td>
<td>×</td>
</tr>
<tr>
<td>!important</td>
<td>×</td>
<td>√</td>
<td></td>
</tr>
</tbody>
</table>
<p><br class="spacer_" /></p>
<p>另外再补充一个，下划线&#8221;_&#8221;, <br />
 IE6支持下划线，IE7和firefox均不支持下划线。</p>
<table border="0" cellspacing="0" width="500">
<tbody>
<tr>
<td></td>
<td>IE6</td>
<td>IE7</td>
<td>FF</td>
</tr>
<tr>
<td>*</td>
<td>√</td>
<td>√</td>
<td>×</td>
</tr>
<tr>
<td>!important</td>
<td>×</td>
<td>√</td>
<td>√</td>
</tr>
<tr>
<td>_</td>
<td>√</td>
<td>×</td>
<td>×</td>
</tr>
</tbody>
</table>
<p><br class="spacer_" /></p>
<p>于是大家还可以这样来区分IE6，IE7，firefox <br />
 : background:orange;*background:green;_background:blue;</p>
<p>注：不管是什么方法，书写的顺序都是firefox的写在前面，IE7的写在中间，IE6的写在最后面。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cndozz.com/article/css-hack-for-ie6-ie7-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>yahoo出现CSS兼容问题</title>
		<link>http://www.cndozz.com/article/css-compatibility-issues-arise-yahoo/</link>
		<comments>http://www.cndozz.com/article/css-compatibility-issues-arise-yahoo/#comments</comments>
		<pubDate>Sun, 25 Feb 2007 01:50:40 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[用户体验]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://herbashow.cn/?p=121</guid>
		<description><![CDATA[今天在使用雅虎site explorer时看到这样的界面

雅虎怎么也犯这种错误，是不是只考虑了IE7没考虑IE6的用户呢？
去同事机器上用IE7一看，IE7显示果然没问题。
IE7的CSS定义与IE6在一些地方是完全不... ]]></description>
			<content:encoded><![CDATA[<p>今天在使用雅虎site explorer时看到这样的界面</p>
<p><img class="alignnone size-full wp-image-122" title="yahoobug" src="http://www.cndozz.com/wp-content/uploads/2009/09/yahoobug.gif" alt="yahoobug" /></p>
<p>雅虎怎么也犯这种错误，是不是只考虑了IE7没考虑IE6的用户呢？</p>
<p>去同事机器上用IE7一看，IE7显示果然没问题。</p>
<p>IE7的CSS定义与IE6在一些地方是完全不一样的，要注意兼容，兼容啊~（网页设计师最头痛的问题）</p>
<p>用IE7设计过网站朋友赶快用IE6检查一下吧~</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cndozz.com/article/css-compatibility-issues-arise-yahoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

