IM製作的Firefox OS的應用程序,我想使按鈕的背景不透明度0.5和文本的不透明度1 ......但它沒有工作...檢查CSS:CSS不透明的背景顏色和文字工作不
.button{
height:40px;
width:180px;
border-radius: 100px 100px 100px 100px;
border: 1px solid #FF9924;
display:inline-block;
background-color:#FF9924;
padding-top:5px;
opacity:0.5;
}
h1{
padding: 5px 5px 5px 5px;
text-align:center;
font-size:20px;
font-family: firstone;
opacity:1.0;
}
頁:
<div class="menu">
<div class="button"><h1>Start the fight</h1></div>
</div>
即[不透明度和α]之間的差(http://jsfiddle.net/LgYDE/) –