<?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>评论：连续字符自动换行的解决方案</title>
	<atom:link href="http://dancewithnet.com/2008/12/04/word-break-all/feed/" rel="self" type="application/rss+xml" />
	<link>http://dancewithnet.com/2008/12/04/word-break-all/</link>
	<description>WEB Design{HTML:CSS:Javascript:DOM:AJAX:PHP:Usability}/Viewpoint/Photo/Food/Mood</description>
	<lastBuildDate>Sat, 13 Mar 2010 07:52:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>来自：mage</title>
		<link>http://dancewithnet.com/2008/12/04/word-break-all/comment-page-1/#comment-202678</link>
		<dc:creator>mage</dc:creator>
		<pubDate>Fri, 17 Jul 2009 07:43:20 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/?p=1386#comment-202678</guid>
		<description>这个问题也一直困扰着我</description>
		<content:encoded><![CDATA[<p>这个问题也一直困扰着我</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：moondy</title>
		<link>http://dancewithnet.com/2008/12/04/word-break-all/comment-page-1/#comment-195275</link>
		<dc:creator>moondy</dc:creator>
		<pubDate>Mon, 15 Jun 2009 02:17:42 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/?p=1386#comment-195275</guid>
		<description>这一直是个困扰的问题，总觉得这应该是个很基本的问题却要用JS来解决有些大动干戈。老外应该比我们更容易碰到连续字符的问题，为什么在开发浏览器或定标准的时候没先把它给解决呢</description>
		<content:encoded><![CDATA[<p>这一直是个困扰的问题，总觉得这应该是个很基本的问题却要用JS来解决有些大动干戈。老外应该比我们更容易碰到连续字符的问题，为什么在开发浏览器或定标准的时候没先把它给解决呢</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：连续字符自动换行的解决方案 @ 随网之舞 - 岁月如歌</title>
		<link>http://dancewithnet.com/2008/12/04/word-break-all/comment-page-1/#comment-163898</link>
		<dc:creator>连续字符自动换行的解决方案 @ 随网之舞 - 岁月如歌</dc:creator>
		<pubDate>Tue, 10 Feb 2009 10:07:47 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/?p=1386#comment-163898</guid>
		<description>[...] via 连续字符自动换行的解决方案 @ 随网之舞. [...]</description>
		<content:encoded><![CDATA[<p>[...] via 连续字符自动换行的解决方案 @ 随网之舞. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：秦歌</title>
		<link>http://dancewithnet.com/2008/12/04/word-break-all/comment-page-1/#comment-162932</link>
		<dc:creator>秦歌</dc:creator>
		<pubDate>Thu, 04 Dec 2008 15:21:58 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/?p=1386#comment-162932</guid>
		<description>To 柠檬：我用了一下，没有发现什么异常，不过我也没有进行过严格测试。回头可以测试看看。

To 小马：呵呵，这是一个好消息，以前还真没有怎么注意。

To 胡戈戈 &amp;  我de艾蜜莉：{overflow:hidden;}是一个常见的解决方案，但是很多时候并不友好，比如用户输入一个URL时，隐藏起来会严重损害用户的感受，虽然Firefox3已经在这方面只有很少的改进。把用户输入的内容完全显示出来才是我们应该做的。

To #9 匿名：在MSDN的&lt;a href=&quot;http://msdn.microsoft.com/en-us/library/cc351024(VS.85).aspx#font&quot; rel=&quot;nofollow&quot;&gt;CSS Compatibility and Internet Explorer&lt;/a&gt;中可以看出，IE8会像IE6和IE7一样支持word-wrap和word-break这两个属性，但我在IE8beta2上测试来看却不支持这两项，由于IE8还处于beta阶段，且我相信IE8最终会支持的，所以在页头声明&lt;meta content=&quot;IE=7&quot; http-equiv=&quot;X-UA-Compatible&quot; /&gt;使IE8按照IE7来解释页面是一个不错的办法。本文中的例子都已经做了相应的修改。

To Sutra：你说的很对，在这里我遵循的XHTML标准，所以应该写成&lt;wbr /&gt;，但是如果要是遵循HTML标准，就应该用&lt;wbr&gt;了</description>
		<content:encoded><![CDATA[<p>To 柠檬：我用了一下，没有发现什么异常，不过我也没有进行过严格测试。回头可以测试看看。</p>
<p>To 小马：呵呵，这是一个好消息，以前还真没有怎么注意。</p>
<p>To 胡戈戈 &#038;  我de艾蜜莉：{overflow:hidden;}是一个常见的解决方案，但是很多时候并不友好，比如用户输入一个URL时，隐藏起来会严重损害用户的感受，虽然Firefox3已经在这方面只有很少的改进。把用户输入的内容完全显示出来才是我们应该做的。</p>
<p>To #9 匿名：在MSDN的<a href="http://msdn.microsoft.com/en-us/library/cc351024(VS.85).aspx#font" rel="nofollow">CSS Compatibility and Internet Explorer</a>中可以看出，IE8会像IE6和IE7一样支持word-wrap和word-break这两个属性，但我在IE8beta2上测试来看却不支持这两项，由于IE8还处于beta阶段，且我相信IE8最终会支持的，所以在页头声明&lt;meta content=&#8221;IE=7&#8243; http-equiv=&#8221;X-UA-Compatible&#8221; /&gt;使IE8按照IE7来解释页面是一个不错的办法。本文中的例子都已经做了相应的修改。</p>
<p>To Sutra：你说的很对，在这里我遵循的XHTML标准，所以应该写成&lt;wbr /&gt;，但是如果要是遵循HTML标准，就应该用&lt;wbr&gt;了</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：Sutra</title>
		<link>http://dancewithnet.com/2008/12/04/word-break-all/comment-page-1/#comment-162931</link>
		<dc:creator>Sutra</dc:creator>
		<pubDate>Thu, 04 Dec 2008 13:37:14 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/?p=1386#comment-162931</guid>
		<description>wbr 怎么好像没有结束符？</description>
		<content:encoded><![CDATA[<p>wbr 怎么好像没有结束符？</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：匿名</title>
		<link>http://dancewithnet.com/2008/12/04/word-break-all/comment-page-1/#comment-162929</link>
		<dc:creator>匿名</dc:creator>
		<pubDate>Thu, 04 Dec 2008 10:48:20 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/?p=1386#comment-162929</guid>
		<description>这个方法IE8不支持啊</description>
		<content:encoded><![CDATA[<p>这个方法IE8不支持啊</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：我de艾蜜莉</title>
		<link>http://dancewithnet.com/2008/12/04/word-break-all/comment-page-1/#comment-162927</link>
		<dc:creator>我de艾蜜莉</dc:creator>
		<pubDate>Thu, 04 Dec 2008 10:13:34 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/?p=1386#comment-162927</guid>
		<description>个人觉得对于这种连续的字符，完全可以overflow:hidden掉，都是无意义的嘛。任何有意义的字符应该word-break:break-all和word-wrap:break-word;都可以解决的。</description>
		<content:encoded><![CDATA[<p>个人觉得对于这种连续的字符，完全可以overflow:hidden掉，都是无意义的嘛。任何有意义的字符应该word-break:break-all和word-wrap:break-word;都可以解决的。</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：ytzong</title>
		<link>http://dancewithnet.com/2008/12/04/word-break-all/comment-page-1/#comment-162916</link>
		<dc:creator>ytzong</dc:creator>
		<pubDate>Thu, 04 Dec 2008 06:45:12 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/?p=1386#comment-162916</guid>
		<description>XBL bindings也有缺点：
1，文字不能选择
2，XML文件加载不进来时该段文字无法显示</description>
		<content:encoded><![CDATA[<p>XBL bindings也有缺点：<br />
1，文字不能选择<br />
2，XML文件加载不进来时该段文字无法显示</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：胡戈戈</title>
		<link>http://dancewithnet.com/2008/12/04/word-break-all/comment-page-1/#comment-162910</link>
		<dc:creator>胡戈戈</dc:creator>
		<pubDate>Thu, 04 Dec 2008 05:00:53 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/?p=1386#comment-162910</guid>
		<description>目前暂时我觉得采用overflow:hidden;的方法比较好，虽然会隐藏掉那些看不到的，但比其它方法要好一些</description>
		<content:encoded><![CDATA[<p>目前暂时我觉得采用overflow:hidden;的方法比较好，虽然会隐藏掉那些看不到的，但比其它方法要好一些</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：秦歌</title>
		<link>http://dancewithnet.com/2008/12/04/word-break-all/comment-page-1/#comment-162909</link>
		<dc:creator>秦歌</dc:creator>
		<pubDate>Thu, 04 Dec 2008 04:53:02 +0000</pubDate>
		<guid isPermaLink="false">http://dancewithnet.com/?p=1386#comment-162909</guid>
		<description>呵呵，你那篇文章，我看过了，XBL Bindings是不错，但是Firefox独有技术，解决原理其实也和JavaScript大同小异，所以JavaScript是一个更好的选择。</description>
		<content:encoded><![CDATA[<p>呵呵，你那篇文章，我看过了，XBL Bindings是不错，但是Firefox独有技术，解决原理其实也和JavaScript大同小异，所以JavaScript是一个更好的选择。</p>
]]></content:encoded>
	</item>
</channel>
</rss>
