css積累(1)

來源:互聯網
上載者:User

 word-break : normal | break-all | keep-all
取值:
normal : 預設值。允許在詞間換行
break-all : 該行為與亞洲語言的 normal 相同。也允許非亞洲語言文本行的任意字內斷開。
該值適合包含一些非亞洲文本的亞洲文本
keep-all : 與所有非亞洲語言的 normal 相同。對於中文,韓文,日文,
不允許字斷開。適合包含少量亞洲文本的非亞洲文本

說明:
設定或檢索對象內文本的字內換行行為。尤其在出現多種語言時。
對於中文,應該使用 break-all 。
此屬性對於 currentStyle 對象而言是唯讀。對於其他對象而言是可讀寫的。
對應的指令碼特性為 wordBreak 。
樣本:
div {word-break : break-all; }

word-wrap : normal | break-word
取值:
normal : 預設值。允許內容頂開指定的容器邊界
break-word : 內容將在邊界內換行。如果需要,詞內換行( word-break )也將發生

說明:
設定或檢索噹噹前行超過指定容器的邊界時是否斷開轉行。
此屬性僅作用於有布局的對象,如塊對象。內聯要素要使用該屬性,必須先設定對象的 height 或 width 屬性,
或者設定 position 屬性為 absolute ,或者設定 display 屬性為 block 。
此屬性對於 currentStyle 對象而言是唯讀。對於其他對象而言是可讀寫的。
對應的指令碼特性為 wordWrap 。
樣本:
div { word-wrap: break-word; word-break: break-all; }

table-layout:fixed;//即寬度固定,不隨內容改變

例一

  1. <html>
  2.     <body>
  3.         <TABLE cellSpacing="0" cellPadding="0" width="100%" border="1" >
  4.             <TBODY>
  5.                 <TR height="30">
  6.                     <TD style="WIDTH: 12px"></TD>
  7.                     <TD class="BigCaption" style="WIDTH: 150px">Web Domain : <SPAN class="WarningDescription">*</SPAN>
  8.                     </TD>
  9.                     <TD>
  10.                         <SELECT id="DWT189WebDomain"/>
  11.                     </TD>
  12.                 </TR>
  13.                 <TR>
  14.                     <TD></TD>
  15.                     <TD vAlign="top" colSpan="2">
  16.                         asfdassdgsdgfsdgfsdgfsdfffffffffffffffffffffffffffffffffffffffffffffsdgfsdfgsdgsdgfsdgfsdgsdg
  17.                     </TD>
  18.                 </TR>
  19.             </TBODY>
  20.         </TABLE>
  21.     </body>
  22. </html>

例二

  1. <html>
  2.     <body>
  3.         <TABLE cellSpacing="0" cellPadding="0" width="100%" border="1" style="table-layout:fixed" >
  4.             <TBODY>
  5.                 <TR height="30">
  6.                     <TD style="WIDTH: 12px"></TD>
  7.                     <TD class="BigCaption" style="WIDTH: 150px">Web Domain : <SPAN class="WarningDescription">*</SPAN>
  8.                     </TD>
  9.                     <TD>
  10.                         <SELECT id="DWT189WebDomain"/>
  11.                     </TD>
  12.                 </TR>
  13.                 <TR>
  14.                     <TD></TD>
  15.                     <TD vAlign="top" colSpan="2">
  16.                         asfdassdgsdgfsdgfsdgfsdfffffffffffffffffffffffffffffffffffffffffffffsdgfsdfgsdgsdgfsdgfsdgs
  17.                     </TD>
  18.                 </TR>
  19.             </TBODY>
  20.         </TABLE>
  21.     </body>
  22. </html>
相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.