divを透明にしたいがdiv内のボタンにはしたくない。誰もそれで私を助けることができますか?
#ss {
background-color: black;
width: 1500px;
height: 80px;
overflow-x: 0;
margin-top: -8px;
margin-left: -10px;
opacity: 0.5;
text-align: center;
position: absolute;
}
#as {
background-color: #968f8f;
width: 70px;
height: 40px;
opacity: 1;
margin-top: 15px;
position: relative;
color: white;
border-radius: 4px;
}
#bd {
background-color: grey;
background-image: url("image3.jpg");
overflow-x: hidden;
background-repeat: no-repeat;
background-size: 1315px;
}
<body id="bd">
<div id="ss">
<table>
<tr>
<td>
<button id="as"> Home </button>
</td>
</tr>
</table>
</div>
</body>
問題は、私はdivの内側のボタンのdivが透明になりたいではなく、ということです。
可能な複製(http://stackoverflow.com/questions/5770341/i-do-in-the-child-opacity-from-the-parent-in-css) – Ivar
[トランスペアレントな親の中の非トランスペアレントな子]の可能な複製(http://stackoverflow.com/questions/3031848/transparent-parent-in-transparent-parent) –
ボタン以外のdivにはあまり表示されないので、不透明度を避けて#7F7F7Fを背景色として使用してください。 –