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.
rgba を個別のプロパティ (色と不透明度) に分割するにはどうすればよいですか。
すなわち。rgba(255,255,255,0.5);
rgba(255,255,255,0.5);
だろう
rgba(255,255,255);
と
opacity(0.5);
これはCSSで可能ですか?
PS。rgbaと同じ効果が必要です。要素全体ではなく、透明な背景。
はい、不透明度のクロスブラウザー互換性のためにブラウザータグを追加してください。
-ms-, -web-kit-, -o-, -moz-
.someElement { background-color: rgb(255,255,255); opacity: 0.5; }
再読後。背景だけを透明にしたい場合はrgba(255,255,255,0.5);、要素の子要素に不透明度を与えないようにするために を使用する必要があります。