網頁中幾個常用到的 CSS 樣式

來源:互聯網
上載者:User
css|網頁 · 1.中文字左右對齊:text-align:justify; text-justify:inter-ideograph;

· 2.固定寬度漢字截斷:overflow:hidden;text-overflow:ellipsis;white-space:nowrap;(不過只能處理文字在一行上的截斷,不能處理多行。)(IE5以上)

· 3.固定寬度漢字(詞)折行:table-layout:fixed; word-break:break-all;(IE5以上)

· 4.<acronym style="cursor: help" title="輸入要提示的文字">文字</acronym> 用滑鼠放在前面的文字上看效果。這個效果在國外的很多網站都可以看到,而國內的少又少。

· 5.圖片設為半透明:.halfalpha { background-color: #000000; filter: Alpha(Opacity=50)} 在 IE6 及 IE5 測試通過,FF未通過。

· 6.FLASH透明: 選中 swf,開啟原代碼視窗,在 </object> 前輸入 <param name="wmode" value="transparent"> 我們在做網頁時常用到把滑鼠放在圖片上會出現圖片變亮的效果,可以用圖片替換的技巧,也可以用如下的濾鏡,代碼如下:

.pictures img { filter: alpha(opacity=45); }
.pictures a:hover img { filter: alpha(opacity=90); }

· 如果文字過長,則將過長的部分變成省略符號顯示:IE5、FF 無效,但可以隱藏,IE6 有效
<div style="width: 120px; height: 50px; border: 1px solid blue; overflow: hidden; text-overflow:ellipsis">
<NOBR>就是比如有一行文字,很長,表格內一行顯示不下.</NOBR>

· title 換行用的符號或在 IE 中可能由於注釋帶來的文字重複問題時可以把注釋改為:<!--[if !IE]>
Put your commentary in here...
<![endif]-->

· 如何用 CSS 調用外部字型文法:@font-face { font-family : name; src: url ( url ); sRules }取值:
name :  字型名稱。任何可能的 font-family 屬性的值
url ( url ) :  使用絕對或相對 url 地址指定OpenType字型檔
sRules :  樣式表定義

相關文章

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.