<?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>Heluyao&#039;s Blog &#187; IE</title>
	<atom:link href="http://www.11gz.com/blog/tag/ie/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.11gz.com/blog</link>
	<description>设计、开发路上的点点滴滴...</description>
	<lastBuildDate>Thu, 02 Sep 2010 07:42:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		
<!-- Start Of Script Generated By WP-PostViews Plus -->
<script type='text/javascript' src='http://www.11gz.com/blog/wp-includes/js/jquery/jquery.js?ver=1.3.2'></script>
<script type="text/javascript">
/* <![CDATA[ */
/* ]]> */
</script>
<!-- End Of Script Generated By WP-PostViews Plus -->
	<item>
		<title>IE8 beta1 中的 CSS 属性</title>
		<link>http://www.11gz.com/blog/2008/05/09/ie8-beta1-css-properties/</link>
		<comments>http://www.11gz.com/blog/2008/05/09/ie8-beta1-css-properties/#comments</comments>
		<pubDate>Thu, 08 May 2008 17:03:23 +0000</pubDate>
		<dc:creator>heluyao</dc:creator>
				<category><![CDATA[纯属扯淡]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[IE8]]></category>

		<guid isPermaLink="false">http://11gz-blog.528u.com/blog/?p=109</guid>
		<description><![CDATA[　　IE8 (下文中的 IE8 暂时仅代表IE8 beta1) 中增加了 CSS3 中的子串匹配的属性选择器（substring matching attribute selectors），具体规则与正则中的匹配很相似：


E[att^=’val’] //子串以’val’ 开始
E[att... ]]></description>
			<content:encoded><![CDATA[<p>　　IE8 (下文中的 IE8 暂时仅代表IE8 beta1) 中增加了 CSS3 中的子串匹配的属性选择器（<a title="substring matching attribute selectors" href="http://www.w3.org/TR/css3-selectors/#attribute-substrings" target="_blank">substring matching attribute selectors</a>），具体规则与正则中的匹配很相似：</p>
<blockquote>
<ul>
<li>E[att^=’val’] //子串以’val’ 开始</li>
<li>E[att$=’val’] //子串以’val’ 结束</li>
<li>E[att*=’val’] //子串中包含’val’</li>
</ul>
</blockquote>
<p>　　IE8 支持绝大多数基本的 CSS2.1 选择器：</p>
<ol>
<li>:before and :after 被支持，只支持文本，不支持图片，但还存在bug 。</li>
<li>:focus 被支持。</li>
<li>display: inline-block 被支持（只能用于内联元素）。</li>
<li>display: table 被支持。</li>
<li>list-style 完全被支持，包括值 upper-greek （此值其他浏览器均未支持）。</li>
<li>outline 被支持。</li>
<li>border-collapse, border-spacing 和 caption-side 被支持。</li>
<li>white-space 完全被支持。</li>
<li>box-sizing 被支持，不过使用的是私有属性 -ms-box-sizing 。</li>
</ol>
<p>　　不支持的包括但不限于：:first-line 、:first-letter、opacity 和 RGBA。</p>
<p>　　对于原来用来区分 IE 的 HACK 在 IE8 中基本失效（比如*property:value、*property:value等）。</p>
<p><strong>Update 08-3.8：</strong></p>
<ol>
<li>原有 IE 的 list-item whitespace bug 在 IE8 中依旧存在。</li>
<li>原有 IE 的 z-index bug 在 IE8 中依旧存在。</li>
<li>IE8 中产生新的 bug：当 line-heigth 小于正常值时，超出的部分将被裁切掉。</li>
<li>IE8 中依然不支持 border 的 transparent 值。</li>
<li>IE8 中 @import 只支持三层嵌套。</li>
</ol>
<p><strong>Update 08-3.12：</strong></p>
<ol>
<li>IE8 中 负数的text-indent 值会被裁切。</li>
<li>IE8 中依然存在 <a title="Fuzzy Specificity Bug" href="http://www.fu2k.org/alex/css/hacks/fuzzyspecificity" target="_blank">Fuzzy Specificity Bug</a>。</li>
</ol>

	<ul class="st-related-posts">
	<li><a href="http://www.11gz.com/blog/2009/06/18/css3-come-note/" title="CSS3来啦！做点笔记 (2009年06月18日)">CSS3来啦！做点笔记</a></li>
	<li><a href="http://www.11gz.com/blog/2008/05/09/css-load-way-optimization/" title="页面中 CSS 加载方式的优化 (2008年05月9日)">页面中 CSS 加载方式的优化</a></li>
	<li><a href="http://www.11gz.com/blog/2008/05/20/web-page-gray-css/" title="让网页变灰色，一句css就搞定 (2008年05月20日)">让网页变灰色，一句css就搞定</a></li>
	<li><a href="http://www.11gz.com/blog/2008/03/08/without-limiting-the-generality-of-min-width/" title="让一个层有个最小宽度，但不局限于这个宽度 (2008年03月8日)">让一个层有个最小宽度，但不局限于这个宽度</a></li>
	<li><a href="http://www.11gz.com/blog/2010/03/19/cssboxmodel/" title="补习:CSS盒模型 (2010年03月19日)">补习:CSS盒模型</a></li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.11gz.com/blog/2008/05/09/ie8-beta1-css-properties/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
