用css實現文字的自動隱藏

來源:互聯網
上載者:User
css 不可換行 <NOBR></NOBR> (不換行)
 
overflow
版本:CSS2  相容性:IE4+ NS6+ 繼承性:無
 
文法: 
 
overflow : visible | auto | hidden | scroll
 
參數:
 
visible :  不剪下內容也不添加捲軸。假如顯式聲明此預設值,對象將被剪下為包含對象的window或frame的大小。並且clip屬性設定將失效
auto :  此為body對象和textarea的預設值。在需要時剪下內容並添加捲軸
hidden :  不顯示超過對象尺寸的內容
scroll :  總是顯示捲軸
 
說明:
 
檢索或設定當對象的內容超過其指定高度及寬度時如何管理內容。
設定textarea對象為hidden值將隱藏其捲軸。
對於table來說,假如table-layout屬性設定為fixed,則td對象支援帶有預設值為hidden的overflow屬性。如果設為hidden,scroll或者auto,那麼超出td尺寸的內容將被剪下。如果設為visible,將導致額外的文本溢出到右邊或左邊(視direction屬性設定而定)的儲存格。
自IE5開始,此屬性在MAC平台上可用。
對應的指令碼特性為overflow。 
樣本:
 
body { overflow: hidden; }
div { overflow: scroll; height: 100px; width: 100px; }

text-overflow版本:IE6+專有屬性 繼承性:無
 
文法:
 
text-overflow : clip | ellipsis
 
參數:
 
clip :  不顯示省略標記(...),而是簡單的裁切
ellipsis :  當對象內文本溢出時顯示省略標記(...)
 
說明:
 
設定或檢索是否使用一個省略標記(...)標示對象內文本的溢出。
對應的指令碼特性為 textOverflow。請參閱我編寫的其他書目。
 
樣本:
 
div { text-overflow : clip; }

代碼:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>無標題文檔</title>
</head>
<body>
<table width="100%"  border="1" cellspacing="2" cellpadding="2" style="table-layout:fixed">
  <tr>
    <td width="10%">s</td>
    <td><div STYLE="width:60%; overflow:hidden;text-overflow:ellipsis"> <nobr> asdfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdata goes here </nobr></div></td>
    <td width="30%"> </td>
  </tr>
  <tr>
    <td>d</td>
    <td><div STYLE="width:60%; overflow:hidden;text-overflow:ellipsis"> <nobr> asdfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdata goes here </nobr></div></td>
    <td> </td>
  </tr>
</table>
</body>
</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.