半透明背景

2007-07-20 12:12 pm
如何用 style sheet 將 <div> 背景半透明, <body> 背景圖畫朦朧隱約可見,

Is there a property/attribute in html or style sheet that makes a div or span or table semi-transparent so that the background image under the div is still vaguely visible?

更新1:

什麼是 Photocap?

回答 (2)

2007-07-26 8:18 pm
✔ 最佳答案
下面 filter:alpha(opacity=70), opacity: 0.7, 同埋 moz-opacity: 0.7 都系 set transparency,个 number 越接近 100/1.0 就越不透明。(0系就完全透明)

有三行系因为browser compatibility同埋CSS既standard问题。无需要既话,delete左就得(当然有多都无影响)

#translucent_div {
width: 300px;
background-color: #fff;
filter:alpha(opacity=70); /* IE */
moz-opacity: 0.7; /* Mozilla */
opacity: 0.7; /* CSS standard */
}

答吾答到你个问题?
參考: 我自己用开 :)
2007-07-20 12:21 pm
用PhotoCap
參考: ME


收錄日期: 2021-04-23 21:32:11
原文連結 [永久失效]:
https://hk.answers.yahoo.com/question/index?qid=20070720000051KK00474

檢視 Wayback Machine 備份