<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>评论：两个不太常用的 CSS Hack</title>
	<atom:link href="http://www.planabc.net/2008/06/26/two_css_hack_not_commonly_used/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.planabc.net/2008/06/26/two_css_hack_not_commonly_used/</link>
	<description>落草为根—专注前端技术&#38;&#38;关注用户体验</description>
	<lastBuildDate>Mon, 15 Mar 2010 14:10:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>来自：蚂蚁线</title>
		<link>http://www.planabc.net/2008/06/26/two_css_hack_not_commonly_used/comment-page-1/#comment-2281</link>
		<dc:creator>蚂蚁线</dc:creator>
		<pubDate>Wed, 10 Dec 2008 06:36:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.planabc.net/?p=78#comment-2281</guid>
		<description>Safari 和 Opera 做hack真还做弄过，小公司基本基本能做到IE+FF兼容就不错了！</description>
		<content:encoded><![CDATA[<p>Safari 和 Opera 做hack真还做弄过，小公司基本基本能做到IE+FF兼容就不错了！</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：甲亢</title>
		<link>http://www.planabc.net/2008/06/26/two_css_hack_not_commonly_used/comment-page-1/#comment-1861</link>
		<dc:creator>甲亢</dc:creator>
		<pubDate>Sat, 01 Nov 2008 09:57:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.planabc.net/?p=78#comment-1861</guid>
		<description>IE FF都没搞称头还来个Safari 和 Opera 郁闷</description>
		<content:encoded><![CDATA[<p>IE FF都没搞称头还来个Safari 和 Opera 郁闷</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：考试</title>
		<link>http://www.planabc.net/2008/06/26/two_css_hack_not_commonly_used/comment-page-1/#comment-846</link>
		<dc:creator>考试</dc:creator>
		<pubDate>Thu, 03 Jul 2008 04:10:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.planabc.net/?p=78#comment-846</guid>
		<description>真是第一次见 装起来</description>
		<content:encoded><![CDATA[<p>真是第一次见 装起来</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：Lunatic Sun</title>
		<link>http://www.planabc.net/2008/06/26/two_css_hack_not_commonly_used/comment-page-1/#comment-819</link>
		<dc:creator>Lunatic Sun</dc:creator>
		<pubDate>Sat, 28 Jun 2008 07:17:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.planabc.net/?p=78#comment-819</guid>
		<description>@秦歌、怿飞 - 抱歉讲错了，safari3.1/windows只不过在@media中使用@import有点小bug，会忽略全部之后的CSS，而不是仅忽略@import中的CSS</description>
		<content:encoded><![CDATA[<p>@秦歌、怿飞 &#8211; 抱歉讲错了，safari3.1/windows只不过在@media中使用@import有点小bug，会忽略全部之后的CSS，而不是仅忽略@import中的CSS</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：OoSleePinG</title>
		<link>http://www.planabc.net/2008/06/26/two_css_hack_not_commonly_used/comment-page-1/#comment-813</link>
		<dc:creator>OoSleePinG</dc:creator>
		<pubDate>Fri, 27 Jun 2008 03:50:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.planabc.net/?p=78#comment-813</guid>
		<description>可以参考下这篇文章
http://www.evotech.net/blog/2007/06/targeting-safari-30-with-css/</description>
		<content:encoded><![CDATA[<p>可以参考下这篇文章<br />
<a href="http://www.evotech.net/blog/2007/06/targeting-safari-30-with-css/" rel="nofollow">http://www.evotech.net/blog/2007/06/targeting-safari-30-with-css/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：OoSleePinG</title>
		<link>http://www.planabc.net/2008/06/26/two_css_hack_not_commonly_used/comment-page-1/#comment-812</link>
		<dc:creator>OoSleePinG</dc:creator>
		<pubDate>Fri, 27 Jun 2008 03:37:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.planabc.net/?p=78#comment-812</guid>
		<description>@media all and (min-width: 0px){ }opera和safari都支持
@media screen and (-webkit-min-device-pixel-ratio:0){}
这个只支持safari，以前做表单统一样式的时候研究过。
如果想区分opera和safari的话先写
@media all and (min-width: 0px){ 
}
然后写
@media screen and (-webkit-min-device-pixel-ratio:0){}
就OK了

div{ width:100px; height:200px;}
@media all and (min-width: 0px){ div{ background:red} }
@media screen and (-webkit-min-device-pixel-ratio:0){div{background:#000}}






可以试下</description>
		<content:encoded><![CDATA[<p>@media all and (min-width: 0px){ }opera和safari都支持<br />
@media screen and (-webkit-min-device-pixel-ratio:0){}<br />
这个只支持safari，以前做表单统一样式的时候研究过。<br />
如果想区分opera和safari的话先写<br />
@media all and (min-width: 0px){<br />
}<br />
然后写<br />
@media screen and (-webkit-min-device-pixel-ratio:0){}<br />
就OK了</p>
<p>div{ width:100px; height:200px;}<br />
@media all and (min-width: 0px){ div{ background:red} }<br />
@media screen and (-webkit-min-device-pixel-ratio:0){div{background:#000}}</p>
<p>可以试下</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：Jun</title>
		<link>http://www.planabc.net/2008/06/26/two_css_hack_not_commonly_used/comment-page-1/#comment-808</link>
		<dc:creator>Jun</dc:creator>
		<pubDate>Fri, 27 Jun 2008 00:05:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.planabc.net/?p=78#comment-808</guid>
		<description>看着就累了..多累的东西呀！</description>
		<content:encoded><![CDATA[<p>看着就累了..多累的东西呀！</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：DeadFire</title>
		<link>http://www.planabc.net/2008/06/26/two_css_hack_not_commonly_used/comment-page-1/#comment-805</link>
		<dc:creator>DeadFire</dc:creator>
		<pubDate>Thu, 26 Jun 2008 14:10:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.planabc.net/?p=78#comment-805</guid>
		<description>看了还是不理解，(min-width: 0px)，是啥意思呢？是hack申明的一部分还是可以和前面的@media互换的部分？</description>
		<content:encoded><![CDATA[<p>看了还是不理解，(min-width: 0px)，是啥意思呢？是hack申明的一部分还是可以和前面的@media互换的部分？</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：BlogYou.net</title>
		<link>http://www.planabc.net/2008/06/26/two_css_hack_not_commonly_used/comment-page-1/#comment-803</link>
		<dc:creator>BlogYou.net</dc:creator>
		<pubDate>Thu, 26 Jun 2008 08:56:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.planabc.net/?p=78#comment-803</guid>
		<description>别说不常用了，我还真是第一次见到这些hack呢。哈哈...也博友知道什么时候会用到，先装起来吧。</description>
		<content:encoded><![CDATA[<p>别说不常用了，我还真是第一次见到这些hack呢。哈哈&#8230;也博友知道什么时候会用到，先装起来吧。</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：怿飞</title>
		<link>http://www.planabc.net/2008/06/26/two_css_hack_not_commonly_used/comment-page-1/#comment-800</link>
		<dc:creator>怿飞</dc:creator>
		<pubDate>Thu, 26 Jun 2008 05:10:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.planabc.net/?p=78#comment-800</guid>
		<description>@秦歌 修改了一下措辞。</description>
		<content:encoded><![CDATA[<p>@秦歌 修改了一下措辞。</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：怿飞</title>
		<link>http://www.planabc.net/2008/06/26/two_css_hack_not_commonly_used/comment-page-1/#comment-799</link>
		<dc:creator>怿飞</dc:creator>
		<pubDate>Thu, 26 Jun 2008 04:55:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.planabc.net/?p=78#comment-799</guid>
		<description>@Lunatic Sun Safari3.1/windows识别的，早上我做过测试的^^
@秦歌 对于Opera，我一般只支持最新的版本，所以上面用了Opera 9+，估计我又误人子弟了--！</description>
		<content:encoded><![CDATA[<p>@Lunatic Sun Safari3.1/windows识别的，早上我做过测试的^^<br />
@秦歌 对于Opera，我一般只支持最新的版本，所以上面用了Opera 9+，估计我又误人子弟了&#8211;！</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：秦歌</title>
		<link>http://www.planabc.net/2008/06/26/two_css_hack_not_commonly_used/comment-page-1/#comment-798</link>
		<dc:creator>秦歌</dc:creator>
		<pubDate>Thu, 26 Jun 2008 04:48:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.planabc.net/?p=78#comment-798</guid>
		<description>@media all and (min-width: 0px) {}不仅仅是Opera9+，记得以前测试至少Opera7+都支持。

to Lunatic Sun：Safari3.1/windows应该能识别@media的，我的站点都是利用@media来写的。</description>
		<content:encoded><![CDATA[<p>@media all and (min-width: 0px) {}不仅仅是Opera9+，记得以前测试至少Opera7+都支持。</p>
<p>to Lunatic Sun：Safari3.1/windows应该能识别@media的，我的站点都是利用@media来写的。</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：waakee.com</title>
		<link>http://www.planabc.net/2008/06/26/two_css_hack_not_commonly_used/comment-page-1/#comment-797</link>
		<dc:creator>waakee.com</dc:creator>
		<pubDate>Thu, 26 Jun 2008 04:45:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.planabc.net/?p=78#comment-797</guid>
		<description>&lt;strong&gt;两个不太常用的 CSS Hack  _  PlanABC - 怿飞’s Blog...&lt;/strong&gt;

1、仅 Safari 3+ 和 Opera 9+ 识别的 Hack@media all and (min-width: 0px) {/* Safari 3+ and Opera 9+ rules here */}或者media screen and (-webkit-min-device-pixel-ratio:0) {/* Safari 3+ and Opera 9+ rules here */}2、仅 Firefox 3 和 IE7 识...</description>
		<content:encoded><![CDATA[<p><strong>两个不太常用的 CSS Hack  _  PlanABC &#8211; 怿飞’s Blog&#8230;</strong></p>
<p>1、仅 Safari 3+ 和 Opera 9+ 识别的 Hack<br />
@media all and (min-width: 0px) {/* Safari 3+ and Opera 9+ rules here */}<br />
或者<br />
media screen and (-webkit-min-device-pixel-ratio:0) {/* Safari 3+ and Opera 9+ rules here */}<br />
2、仅 Firefox 3 和 IE7 识&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：Lunatic Sun</title>
		<link>http://www.planabc.net/2008/06/26/two_css_hack_not_commonly_used/comment-page-1/#comment-796</link>
		<dc:creator>Lunatic Sun</dc:creator>
		<pubDate>Thu, 26 Jun 2008 04:41:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.planabc.net/?p=78#comment-796</guid>
		<description>题外话，Safari 3.1/windows 不能识别@media</description>
		<content:encoded><![CDATA[<p>题外话，Safari 3.1/windows 不能识别@media</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：大猫</title>
		<link>http://www.planabc.net/2008/06/26/two_css_hack_not_commonly_used/comment-page-1/#comment-795</link>
		<dc:creator>大猫</dc:creator>
		<pubDate>Thu, 26 Jun 2008 04:33:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.planabc.net/?p=78#comment-795</guid>
		<description>囧,先收藏着,暂时被IE和FF折腾ing</description>
		<content:encoded><![CDATA[<p>囧,先收藏着,暂时被IE和FF折腾ing</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：南芝</title>
		<link>http://www.planabc.net/2008/06/26/two_css_hack_not_commonly_used/comment-page-1/#comment-794</link>
		<dc:creator>南芝</dc:creator>
		<pubDate>Thu, 26 Jun 2008 03:22:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.planabc.net/?p=78#comment-794</guid>
		<description>很怪异哦
不知道hack是怎么做出来的</description>
		<content:encoded><![CDATA[<p>很怪异哦<br />
不知道hack是怎么做出来的</p>
]]></content:encoded>
	</item>
</channel>
</rss>
