<?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>评论：firefox通过XUL实现text-overflow:ellipsis的效果</title>
	<atom:link href="http://www.aoao.org.cn/blog/2008/07/firefox-text-overflow-ellipsis/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aoao.org.cn/blog/2008/07/firefox-text-overflow-ellipsis/</link>
	<description>没落的角落</description>
	<lastBuildDate>Thu, 25 Feb 2010 10:33:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>来自：小魁天下</title>
		<link>http://www.aoao.org.cn/blog/2008/07/firefox-text-overflow-ellipsis/#comment-75717</link>
		<dc:creator>小魁天下</dc:creator>
		<pubDate>Sun, 03 Jan 2010 05:29:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.aoao.org.cn/?p=114#comment-75717</guid>
		<description>此方法最大的症结在于ellipsis.xml文件的存放路径。想必用过的朋友都会遇到这种问题，路径如果不在同一目录下，显示是一片空白。很是头疼。</description>
		<content:encoded><![CDATA[<p>此方法最大的症结在于ellipsis.xml文件的存放路径。想必用过的朋友都会遇到这种问题，路径如果不在同一目录下，显示是一片空白。很是头疼。</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：xiaohuixiongya</title>
		<link>http://www.aoao.org.cn/blog/2008/07/firefox-text-overflow-ellipsis/#comment-74908</link>
		<dc:creator>xiaohuixiongya</dc:creator>
		<pubDate>Wed, 02 Dec 2009 02:54:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.aoao.org.cn/?p=114#comment-74908</guid>
		<description>很感谢！！可是line-height 不起作用了@@</description>
		<content:encoded><![CDATA[<p>很感谢！！可是line-height 不起作用了@@</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：十四像素 &#187; 表格外观的无序列表</title>
		<link>http://www.aoao.org.cn/blog/2008/07/firefox-text-overflow-ellipsis/#comment-62559</link>
		<dc:creator>十四像素 &#187; 表格外观的无序列表</dc:creator>
		<pubDate>Mon, 25 May 2009 17:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.aoao.org.cn/?p=114#comment-62559</guid>
		<description>[...] 解决2：隐藏吧，它已经没有存在的价值了！（ - -! 其实是我想不出别的办法来了） 但为了体验好一点，我加上了text-overflow。这个，FF暂时不支持……aoao有好的解决办法，我也有次点的解决办法和一个完美的解决办法（目前YY中，且仅FF3.5支持）。 [...]</description>
		<content:encoded><![CDATA[<p>[...] 解决2：隐藏吧，它已经没有存在的价值了！（ &#8211; -! 其实是我想不出别的办法来了） 但为了体验好一点，我加上了text-overflow。这个，FF暂时不支持……aoao有好的解决办法，我也有次点的解决办法和一个完美的解决办法（目前YY中，且仅FF3.5支持）。 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：Firefox实现text-overflow:ellipsis &#171; OnlyLonely &#38; Marshall&#8217;s</title>
		<link>http://www.aoao.org.cn/blog/2008/07/firefox-text-overflow-ellipsis/#comment-61045</link>
		<dc:creator>Firefox实现text-overflow:ellipsis &#171; OnlyLonely &#38; Marshall&#8217;s</dc:creator>
		<pubDate>Sun, 03 May 2009 16:15:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.aoao.org.cn/?p=114#comment-61045</guid>
		<description>[...] Safari下运行都挺好，但Firefox总有点问题，都是关于Grid的。昨天碰到的问题是GridPanel(就是表格)，当某列的内容超出了预设的宽度的时候，会把这一行撑爆，结果列就无法对齐，很难看。用Firebug+IEDevBar看了半天(IE是好的，Chrome还没有可用的调试器)，才发现问题在于Firefox对text-overflow:ellipsis这个CSS3的属性不支持。Google了一番，这里推荐了两个方法，第一个方法更优雅一些，使用了mozilla的扩展属性-moz-binding，直接用上了XUL和XBL。第二种牵涉到了Javascript，感觉不是很好。这里有一个代码的下载，一开始我自己拷贝代码下来捣持了半天也没搞定，直接下代码就OK。 [...]</description>
		<content:encoded><![CDATA[<p>[...] Safari下运行都挺好，但Firefox总有点问题，都是关于Grid的。昨天碰到的问题是GridPanel(就是表格)，当某列的内容超出了预设的宽度的时候，会把这一行撑爆，结果列就无法对齐，很难看。用Firebug+IEDevBar看了半天(IE是好的，Chrome还没有可用的调试器)，才发现问题在于Firefox对text-overflow:ellipsis这个CSS3的属性不支持。Google了一番，这里推荐了两个方法，第一个方法更优雅一些，使用了mozilla的扩展属性-moz-binding，直接用上了XUL和XBL。第二种牵涉到了Javascript，感觉不是很好。这里有一个代码的下载，一开始我自己拷贝代码下来捣持了半天也没搞定，直接下代码就OK。 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：aoao</title>
		<link>http://www.aoao.org.cn/blog/2008/07/firefox-text-overflow-ellipsis/#comment-58091</link>
		<dc:creator>aoao</dc:creator>
		<pubDate>Mon, 30 Mar 2009 05:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.aoao.org.cn/?p=114#comment-58091</guid>
		<description>XML用一般编辑器就行了吧，我都是手写，没什么所谓的。</description>
		<content:encoded><![CDATA[<p>XML用一般编辑器就行了吧，我都是手写，没什么所谓的。</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：slowsay</title>
		<link>http://www.aoao.org.cn/blog/2008/07/firefox-text-overflow-ellipsis/#comment-58085</link>
		<dc:creator>slowsay</dc:creator>
		<pubDate>Mon, 30 Mar 2009 02:30:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.aoao.org.cn/?p=114#comment-58085</guid>
		<description>另外，请教aoao，你所用编写xml的软件平台是哪款软件
我一直用大胡子破译xml的软件
:)</description>
		<content:encoded><![CDATA[<p>另外，请教aoao，你所用编写xml的软件平台是哪款软件<br />
我一直用大胡子破译xml的软件<br />
:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：14px</title>
		<link>http://www.aoao.org.cn/blog/2008/07/firefox-text-overflow-ellipsis/#comment-57509</link>
		<dc:creator>14px</dc:creator>
		<pubDate>Sat, 21 Mar 2009 14:06:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.aoao.org.cn/?p=114#comment-57509</guid>
		<description>来感谢一哈，嘿嘿，灰常好用。</description>
		<content:encoded><![CDATA[<p>来感谢一哈，嘿嘿，灰常好用。</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：aoao</title>
		<link>http://www.aoao.org.cn/blog/2008/07/firefox-text-overflow-ellipsis/#comment-54886</link>
		<dc:creator>aoao</dc:creator>
		<pubDate>Sun, 08 Feb 2009 10:06:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.aoao.org.cn/?p=114#comment-54886</guid>
		<description>要定宽度</description>
		<content:encoded><![CDATA[<p>要定宽度</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：电脑维护网</title>
		<link>http://www.aoao.org.cn/blog/2008/07/firefox-text-overflow-ellipsis/#comment-54437</link>
		<dc:creator>电脑维护网</dc:creator>
		<pubDate>Sun, 01 Feb 2009 06:23:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.aoao.org.cn/?p=114#comment-54437</guid>
		<description>text-overflow:ellipsis;overflow:hidden;怎么多余的文字不能隐藏呢</description>
		<content:encoded><![CDATA[<p>text-overflow:ellipsis;overflow:hidden;怎么多余的文字不能隐藏呢</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：haha</title>
		<link>http://www.aoao.org.cn/blog/2008/07/firefox-text-overflow-ellipsis/#comment-42502</link>
		<dc:creator>haha</dc:creator>
		<pubDate>Mon, 20 Oct 2008 10:54:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.aoao.org.cn/?p=114#comment-42502</guid>
		<description>似乎只对 ff3起作用
 换做ff2 就歇菜了!</description>
		<content:encoded><![CDATA[<p>似乎只对 ff3起作用<br />
 换做ff2 就歇菜了!</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：chensulong</title>
		<link>http://www.aoao.org.cn/blog/2008/07/firefox-text-overflow-ellipsis/#comment-30312</link>
		<dc:creator>chensulong</dc:creator>
		<pubDate>Fri, 15 Aug 2008 00:41:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.aoao.org.cn/?p=114#comment-30312</guid>
		<description>先保存下来了</description>
		<content:encoded><![CDATA[<p>先保存下来了</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：zoloadang</title>
		<link>http://www.aoao.org.cn/blog/2008/07/firefox-text-overflow-ellipsis/#comment-27751</link>
		<dc:creator>zoloadang</dc:creator>
		<pubDate>Sat, 26 Jul 2008 09:26:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.aoao.org.cn/?p=114#comment-27751</guid>
		<description>终于找到方法咯！！~~~</description>
		<content:encoded><![CDATA[<p>终于找到方法咯！！~~~</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：firefox实现ie下的text-overflow:ellipsis效果 &#124; 歪批 &#124; 讨论网站开发的博客</title>
		<link>http://www.aoao.org.cn/blog/2008/07/firefox-text-overflow-ellipsis/#comment-26565</link>
		<dc:creator>firefox实现ie下的text-overflow:ellipsis效果 &#124; 歪批 &#124; 讨论网站开发的博客</dc:creator>
		<pubDate>Fri, 18 Jul 2008 16:13:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.aoao.org.cn/?p=114#comment-26565</guid>
		<description>[...] 参考文章：http://www.aoao.org.cn/blog/2008/07/firefox-text-overflow-ellipsis/ [...]</description>
		<content:encoded><![CDATA[<p>[...] 参考文章：http://www.aoao.org.cn/blog/2008/07/firefox-text-overflow-ellipsis/ [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：羽中</title>
		<link>http://www.aoao.org.cn/blog/2008/07/firefox-text-overflow-ellipsis/#comment-26564</link>
		<dc:creator>羽中</dc:creator>
		<pubDate>Fri, 18 Jul 2008 16:12:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.aoao.org.cn/?p=114#comment-26564</guid>
		<description>先不管引起不引起不了后果，先拿来用了</description>
		<content:encoded><![CDATA[<p>先不管引起不引起不了后果，先拿来用了</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：aoao</title>
		<link>http://www.aoao.org.cn/blog/2008/07/firefox-text-overflow-ellipsis/#comment-25882</link>
		<dc:creator>aoao</dc:creator>
		<pubDate>Sun, 13 Jul 2008 10:22:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.aoao.org.cn/?p=114#comment-25882</guid>
		<description>@梦翔 私有东西通常会引起不良后果滴。。。</description>
		<content:encoded><![CDATA[<p>@梦翔 私有东西通常会引起不良后果滴。。。</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：梦翔</title>
		<link>http://www.aoao.org.cn/blog/2008/07/firefox-text-overflow-ellipsis/#comment-25631</link>
		<dc:creator>梦翔</dc:creator>
		<pubDate>Fri, 11 Jul 2008 09:56:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.aoao.org.cn/?p=114#comment-25631</guid>
		<description>用了它，FF line-height失效</description>
		<content:encoded><![CDATA[<p>用了它，FF line-height失效</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：MacJi</title>
		<link>http://www.aoao.org.cn/blog/2008/07/firefox-text-overflow-ellipsis/#comment-25016</link>
		<dc:creator>MacJi</dc:creator>
		<pubDate>Sun, 06 Jul 2008 16:47:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.aoao.org.cn/?p=114#comment-25016</guid>
		<description>重装上阵，好期待惊喜。。。</description>
		<content:encoded><![CDATA[<p>重装上阵，好期待惊喜。。。</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：roc</title>
		<link>http://www.aoao.org.cn/blog/2008/07/firefox-text-overflow-ellipsis/#comment-24942</link>
		<dc:creator>roc</dc:creator>
		<pubDate>Sun, 06 Jul 2008 03:49:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.aoao.org.cn/?p=114#comment-24942</guid>
		<description>锐风被无情的讽刺了~
另，aoao也是熬夜一族</description>
		<content:encoded><![CDATA[<p>锐风被无情的讽刺了~<br />
另，aoao也是熬夜一族</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：aoao</title>
		<link>http://www.aoao.org.cn/blog/2008/07/firefox-text-overflow-ellipsis/#comment-24887</link>
		<dc:creator>aoao</dc:creator>
		<pubDate>Sat, 05 Jul 2008 19:50:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.aoao.org.cn/?p=114#comment-24887</guid>
		<description>@锐风 你觉得你的洞察力真的强吗？？</description>
		<content:encoded><![CDATA[<p>@锐风 你觉得你的洞察力真的强吗？？</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：锐风</title>
		<link>http://www.aoao.org.cn/blog/2008/07/firefox-text-overflow-ellipsis/#comment-24701</link>
		<dc:creator>锐风</dc:creator>
		<pubDate>Fri, 04 Jul 2008 11:25:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.aoao.org.cn/?p=114#comment-24701</guid>
		<description>title 里写 XUL, 正文里写 XBL.
到底是哪个捏, 晕了.

我强大的洞察力..</description>
		<content:encoded><![CDATA[<p>title 里写 XUL, 正文里写 XBL.<br />
到底是哪个捏, 晕了.</p>
<p>我强大的洞察力..</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.544 seconds -->
