卡西卡的小寶庫
寶庫寶庫寶庫
Showing posts with label CSS. Show all posts
Showing posts with label CSS. Show all posts

CSS相容

Posted In: , . By 卡西卡

#example1 {
color:#FF0000; /*For Firefox*/
*color:#00FF00; /*For IE7 & IE6*/
_color:#0000FF; /*For IE6*/
/*注意順序*/
}

示範


#example { color: #FF0000; } /* Firefox */
*html #example { color: #00FF00; } /* IE7 & IE6 */
*+html #example { color: #0000FF; } /* IE6 */

示範


參考:http://www.arcbox.cn/zblog/post/36.html

 

字型

Posted In: . By 卡西卡

發光[IE]
<div style='padding:5px;width:100%;
FILTER: glow(color:#FF0000,strength=5);color:#000000;
font-size:12pt; font-weight:bold; font-family:Courier New'>示範 ABC</div></div>

示範 ABC
長度超過時把文字變成[IE]會變成...,[FF]會截掉
<div style='OVERFLOW: hidden; WIDTH: 150px; WHITE-SPACE: nowrap; TEXT-OVERFLOW: ellipsis'>
示範:為程式碼自動產生語法突顯(Syntax Hightlighting) 的功能</div>
為程式碼自動產生語法突顯(Syntax Hightlighting) 的功能
  • 不換行:white-space:nowrap
  • 無裝飾:text-decoration:none;
  • 置中:text-align: center;