CSS 文字溢出時的自動隱藏

來源:互聯網
上載者:User

文法:overflow : visible | auto | hidden | scroll

visible::不剪下內容也不添加捲軸。假如顯式聲明此預設值,對象將被剪下為包含對象的window或frame的大小。並且clip屬性設定將失效。
auto:此為body對象和textrea的預設值。在需要時剪下內容並添加捲軸
hidden:不顯示超過對象尺寸的內容。
scroll:總是顯示捲軸。


執行個體

 代碼如下 複製代碼
body { overflow: hidden; }
div { overflow: scroll; height: 100px; width: 100px; }


css

 代碼如下 複製代碼

<!doctype html public "-//w3c//dtd xhtml 1.0 strict//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>111cn.net</title>
<style type="text/css">
#yc {
width:180px;
height:100px;
overflow:hidden;
}
</style>
</head>
<body>
<div id="yc">
<table cellspacing="0" cellpadding="0">
<tr>
<td>111cn.net 專業div+css教程 111cn.net 專業div+css教程 111cn.net 專業div+css教程 </td>
</tr>
<tr>
<td>111cn.net 專業div+css教程 111cn.net 專業div+css教程 111cn.net 專業div+css教程 </td>
</tr>
<tr>
<td>111cn.net 專業div+css教程 111cn.net 專業div+css教程 111cn.net 專業div+css教程 </td>
</tr>
</table>
</div>
</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.