DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> CSS入門知識 >> CSS詳解 >> CSS省略號代碼詳解
CSS省略號代碼詳解
編輯:CSS詳解     
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xHtml1-transitional.dtd">
  2. <Html XMLns="http://www.w3.org/1999/xHtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/Html; charset=utf-8" />
  5. <title>CSS省略號代碼</title>
  6. <style type="text/CSS">
  7. *{
  8.     margin:0;
  9.     padding:0;
  10. }
  11. body{
  12.     padding:10px;
  13.     font-family:Arial;
  14. }
  15. #ididid{
  16.     position:relative;
  17.     width:150px;
  18.     height:20px;
  19.     line-height:20px;
  20.     text-overflow:ellipsis;
  21.     white-space:normal;
  22.     *white-space:nowrap;
  23.     overflow:hidden;
  24.     border:1px solid #999;
  25. }
  26. #ididid span{
  27.     position:absolute;
  28.     top:0;
  29.     right:0;
  30.     display:block;
  31.     float:left;
  32. }
  33. #ididid span:after{content:"...";}
  34. </style>
  35. </head>
  36. <body>
  37. <div id="ididid">歡迎來到程序員部落<span></span></div>
  38. </body>
  39. </Html>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved