Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この種の CSS を含む div がある場合:
background: #000000;
次に、透明度を背景色のみに適用することはできますか?これは、境界線または div 内のコンテンツには影響しませんか? 背景色にのみ影響しますか?.pngできれば背景を使いたくないので、どうすればいいのか疑問に思いました。
.png
また、サポートされている場合、すべてのブラウザでサポートされていますか?
RGBa を使用できます。
background: rgba(0, 0, 0, .5);
RGBa ブラウザーのサポート
これを試すことができます..すべてのブラウザで動作する可能性があります:
.class_name { zoom: 1; filter: alpha(opacity=50); opacity: 0.5; }