程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> mysql數據庫備份及恢復敕令 mysqldump,source的用法

mysql數據庫備份及恢復敕令 mysqldump,source的用法

編輯:MySQL綜合教程

mysql數據庫備份及恢復敕令 mysqldump,source的用法。本站提示廣大學習愛好者:(mysql數據庫備份及恢復敕令 mysqldump,source的用法)文章只能為提供參考,不一定能成為您想要的結果。以下是mysql數據庫備份及恢復敕令 mysqldump,source的用法正文


兼容 IE 和 FF 的換行 CSS 推舉款式
  最好的方法是
  word-wrap:break-word; overflow:hidden;
  而不是
  word-wrap:break-word; word-break:break-all;
  也不是
 word-wrap:break-word; overflow:auto;
  在 IE 下沒有任何成績,在 FF 下,長串英文會被遮住超越的內容。
  word-wrap同word-break的差別
  word-wrap:
  normal  Default. Content exceeds the boundaries of its container.
  break-word Content wraps to next line, and a word-break occurs when necessary. 需要時會觸發word-break。
  word-break:
  normal  Default. Allows line breaking within words. 似乎是只對Asian text起感化。
  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.
  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, or Korean.
  總結以下:
  word-wrap是掌握換行的。
  應用break-word時,是將強迫換行。中文沒有任何成績,英文語句也沒成績。然則關於長串的英文,就不起感化。
  break-word是掌握能否斷詞的。
  normal是默許情形,英文單詞不被拆開。
  break-all,是斷開單詞。在單詞到界限時,下個字母主動到下一行。重要處理了長串英文的成績。
  keep-all,是指Chinese, Japanese, and Korean赓續詞。即只用此時,不消word-wrap,中文就不會換行了。(英文語句正常。)
  ie下:
  應用word-wrap:break-word;一切的都正常。
  ff下:
  如這2個都不消的話,中文不會出任何成績。英文語句也不會出成績。然則,長串英文會出成績。
  為懂得決長串英文,普通用word-wrap:break-word;word-break:break-all;。然則,此方法會招致,通俗的英文語句中的單詞會被斷開(ie下也是)。
  今朝重要的成績存在於 長串英文 和 英文單詞被斷開。其實長串英文就是一個比擬長的單詞罷了。
  即英文單詞應不該該被斷開那?那成績很顯著了,明顯不該該被斷開了。
  關於長串英文,就是歹意的器械,天然不消去管了。然則,也要想些方法,不讓它把容器撐年夜。
  用:overflow:auto; ie下,長串會主動折行。ff下,長串會被隱瞞。
  所以,綜上,最好的方法是word-wrap:break-word;overflow:hidden;而不是word-wrap:break-word;word-break:break-all;。
  word-wrap:break-word;overflow:auto;在ie下沒有任何成績。在ff下,長串會被遮住部門內容。
  另,測試代碼以下:
  1.htm
  <style>
  .c1{ width:300px;  border:1px solid red}
  .c2{ width:300px;word-wrap:break-word;  border:1px solid yellow}
  .c3{ width:300px;word-wrap:break-word;word-break:break-all;  border:1px solid green}
  .c4{ width:300px;word-wrap:break-word;word-break:keep-all; border:1px solid blue}
  .c5{ width:300px;word-break:break-all;  border:1px solid black}
  .c6{ width:300px;word-break:keep-all;  border:1px solid red}
  .c7{ width:300px;word-wrap:break-word;overflow:auto;  border:1px solid yellow}
  </style>
  .c1{ width:300px;  border:1px solid red}
  <div class="c1">asdasd
</div>
  <div class=c1>
  This is all English. This is all English. This is all English.
  </div>
  <div class=c1>
  滿是中文的情形。滿是中文的情形。滿是中文的情形。
  </div>
  <div class=c1>
  中英文混排的情形。Chinese and English. 中英文混排的情形。Chinese and English.
  </div>
  <br>
  .c2{ width:300px;word-wrap:break-word; border:1px solid yellow}
  <div class="c2">
  safjaskflasjfklsajfklasjflksajflksjflkasjfksafj
  </div>
  <div class=c2>
  This is all English. This is all English. This is all English.
  </div>
  <div class=c2>
  滿是中文的情形。滿是中文的情形。滿是中文的情形。
  </div>
  <div class=c2>
  中英文混排的情形。Chinese and English. 中英文混排的情形。Chinese and English.
  </div>
  <br>
  .c3{ width:300px;word-wrap:break-word;word-break:break-all;  border:1px solid green}
  <div class="c3">
  safjaskflasjfklsajfklasjflksajflksjflkasjfksafj
  </div>
  <div class=c3>
  This is all English. This is all English. This is all English.
  </div>
  <div class=c3>
  滿是中文的情形。滿是中文的情形。滿是中文的情形。
  </div>
  <div class=c3>
  中英文混排的情形。Chinese and English. 中英文混排的情形。Chinese and English.
  </div>
  <br>
  .c4{ width:300px;word-wrap:break-word;word-break:keep-all; border:1px solid blue}
  <div class="c4">
  safjaskflasjfklsajfklasjflksajflksjflkasjfksafj
  </div>
  <div class=c4>
  This is all English. This is all English. This is all English.
  </div>
  <div class=c4>
  滿是中文的情形。滿是中文的情形。滿是中文的情形。
  </div>
  <div class=c4>
  中英文混排的情形。Chinese and English. 中英文混排的情形。Chinese and English.
  </div>
  <br>
  .c5{ width:300px;word-break:break-all;  border:1px solid black}
  <div class="c5">
  safjaskflasjfklsajfklasjflksajflksjflkasjfksafj
  </div>
  <div class=c5>
  This is all English. This is all English. This is all English.
  </div>
  <div class=c5>
  滿是中文的情形。滿是中文的情形。滿是中文的情形。
  </div>
  <div class=c5>
  中英文混排的情形。Chinese and English. 中英文混排的情形。Chinese and English.
  </div>
  <br>
  .c6{ width:300px;word-break:keep-all;  border:1px solid red}
  <div class="c6">
  safjaskflasjfklsajfklasjflksajflksjflkasjfksafj
  </div>
  <div class=c6>
  This is all English. This is all English. This is all English.
  </div>
  <div class=c6>
  滿是中文的情形。滿是中文的情形。滿是中文的情形。
  </div>
  <div class=c6>
  中英文混排的情形。Chinese and English. 中英文混排的情形。Chinese and English.
  </div>
  <br>
  .c7{ width:300px;word-wrap:break-word;overflow:auto;  border:1px solid yellow}
  <div class="c7">
  safjaskflasjfklsajfklasjflksajflksjflkasjfksafj
  </div>
  <div class=c7>
  This is all English. This is all English. This is all English.
  </div>
  <div class=c7>
  滿是中文的情形。滿是中文的情形。滿是中文的情形。
  </div>
  <div class=c7>
  中英文混排的情形。Chinese and English. 中英文混排的情形。Chinese and English.
  </div>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved