<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule" >
  <channel>
  <title>花見酒</title>
  <link>http://hanamizake.ni-moe.com/</link>
  <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://hanamizake.ni-moe.com/RSS/" />
  <description></description>
  <lastBuildDate>Thu, 01 Dec 2016 01:46:39 GMT</lastBuildDate>
  <language>ja</language>
  <copyright>© Ninja Tools Inc.</copyright>
  <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" />

    <item>
    <title>500M</title>
    <description>
    <![CDATA[所以说太糟了]]>
    </description>
    <category>未選択</category>
    <link>http://hanamizake.ni-moe.com/%E6%9C%AA%E9%81%B8%E6%8A%9E/500m</link>
    <pubDate>Thu, 01 Dec 2016 01:46:39 GMT</pubDate>
    <guid isPermaLink="false">hanamizake.ni-moe.com://entry/6</guid>
  </item>
    <item>
    <title>無題</title>
    <description>
    <![CDATA[忍者博客下手真狠，一下变成只有500M了<br />
<img src="//hanamizake.ni-moe.com/File/01cedcd1.jpeg" alt="" /><br /><br /><a href="http://hanamizake.ni-moe.com/%E6%9C%AA%E9%81%B8%E6%8A%9E/20131119_4" target="_blank">つづきはこちら</a>]]>
    </description>
    <category>未選択</category>
    <link>http://hanamizake.ni-moe.com/%E6%9C%AA%E9%81%B8%E6%8A%9E/20131119_4</link>
    <pubDate>Tue, 19 Nov 2013 14:34:57 GMT</pubDate>
    <guid isPermaLink="false">hanamizake.ni-moe.com://entry/5</guid>
  </item>
    <item>
    <title>HOMUHOMU</title>
    <description>
    <![CDATA[<img alt="16694070.jpg" src="//hanamizake.ni-moe.com/File/16694070.jpg" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; float: left; width: 550px; height: 844px; " />
<div style="clear:both">
	&nbsp;</div>
<br /><a href="http://hanamizake.ni-moe.com/%E6%9C%AA%E9%81%B8%E6%8A%9E/homuhomu" target="_blank">つづきはこちら</a>]]>
    </description>
    <category>未選択</category>
    <link>http://hanamizake.ni-moe.com/%E6%9C%AA%E9%81%B8%E6%8A%9E/homuhomu</link>
    <pubDate>Sat, 22 Oct 2011 10:17:47 GMT</pubDate>
    <guid isPermaLink="false">hanamizake.ni-moe.com://entry/3</guid>
  </item>
    <item>
    <title>鼻血</title>
    <description>
    <![CDATA[<img alt="3862853.jpg" src="//hanamizake.ni-moe.com/File/3862853.jpg" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; float: left; width: 550px;  " /><br />
我很爱你呀<br /><a href="http://hanamizake.ni-moe.com/%E6%9C%AA%E9%81%B8%E6%8A%9E/%E9%BC%BB%E8%A1%80" target="_blank">つづきはこちら</a>]]>
    </description>
    <category>未選択</category>
    <link>http://hanamizake.ni-moe.com/%E6%9C%AA%E9%81%B8%E6%8A%9E/%E9%BC%BB%E8%A1%80</link>
    <pubDate>Sat, 22 Oct 2011 09:57:32 GMT</pubDate>
    <guid isPermaLink="false">hanamizake.ni-moe.com://entry/2</guid>
  </item>
    <item>
    <title>CSS换行样式最好的方式</title>
    <description>
    <![CDATA[<p>
	在项目实际应用中出现了表格的内容不会换行，本文列举了兼容 IE 和 FF 的换行 CSS 推荐样式，详细介绍了word-wrap和word-break的区别。</p>
<p>
	兼容 IE 和 FF 的换行 CSS 推荐样式 最好的方式是</p>
<p>
	word-wrap:break-word; overflow:hidden;</p>

<p>
	而不是</p>
<p>
	word-wrap:break-word; word-break:break-all;</p>
<p>
	也不是</p>
<p>
	word-wrap:break-word; overflow:auto;</p>
<p>
	在 IE 下没有任何问题，在 FF 下，长串英文会被遮住超出的内容。</p>
<p>
	word-wrap同word-break的区别</p>
<p>
	word-wrap:<br />
	normal&nbsp;&nbsp; Default. Content exceeds the boundaries of its container.<br />
	break-word Content wraps to next line, and a word-break occurs when necessary. 必要时会触发word-break。</p>
<p>
	word-break:<br />
	normal&nbsp;&nbsp; Default. Allows line breaking within words. 好像是只对Asian text起作用。<br />
	break-all Behaves the same as normal for Asian text, yet allows the line to break arbitrarily for non-Asian text. This value is suited to Asian text that contains some excerpts of non-Asian text.<br />
	keep-all Does not allow word breaking for Chinese, Japanese, and Korean. Functions the same way as normal for all non-Asian languages. This value is optimized for text that includes small amounts of Chinese, Japanese,&nbsp;or&nbsp;Korean.<br />
	&nbsp;<br />
	总结如下：</p>
<p>
	word-wrap是控制换行的。</p>
<p>
	使用break-word时，是将强制换行。中文没有任何问题，英文语句也没问题。但是对于长串的英文，就不起作用。</p>
<p>
	break-word是控制是否断词的。</p>
<p>
	normal是默认情况，英文单词不被拆开。</p>
<p>
	break-all，是断开单词。在单词到边界时，下个字母自动到下一行。主要解决了长串英文的问题。</p>
<p>
	keep-all，是指Chinese, Japanese, and Korean不断词。即只用此时，不用word-wrap，中文就不会换行了。（英文语句正常。）力</p>
<p>
	ie下：</p>
<p>
	使用word-wrap:break-word;所有的都正常。</p>
<p>
	ff下：</p>
<p>
	如这2个都不用的话，中文不会出任何问题。英文语句也不会出问题。但是，长串英文会出问题。</p>
<p>
	为了解决长串英文，一般用word-wrap:break-word;word-break:break-all;。但是，此方式会导致，普通的英文语句中的单词会被断开（ie下也是）。目前主要的问题存在于 长串英文 和 英文单词被断开。其实长串英文就是一个比较长的单词而已。</p>
<p>
	即英文单词应不应该被断开那？那问题很明显了，显然不应该被断开了。</p>
<p>
	对于长串英文，就是恶意的东西，自然不用去管了。但是，也要想些办法，不让它把容器撑大。</p>
<p>
	用：overflow:auto; ie下，长串会自动折行。ff下，长串会被遮盖。</p>
<p>
	所以，综上，最好的方式是word-wrap:break-word;overflow:hidden;而不是word-wrap:break-word;word-break:break-all;。</p>
]]>
    </description>
    <category>未選択</category>
    <link>http://hanamizake.ni-moe.com/%E6%9C%AA%E9%81%B8%E6%8A%9E/css%E6%8D%A2%E8%A1%8C%E6%A0%B7%E5%BC%8F%E6%9C%80%E5%A5%BD%E7%9A%84%E6%96%B9%E5%BC%8F</link>
    <pubDate>Fri, 21 Oct 2011 18:49:00 GMT</pubDate>
    <guid isPermaLink="false">hanamizake.ni-moe.com://entry/1</guid>
  </item>

    </channel>
</rss>