我不想从 CSS 中的父级继承子级不透明度

I do not want to inherit the child opacity from the parent in CSS(我不想从 CSS 中的父级继承子级不透明度)

本文介绍了我不想从 CSS 中的父级继承子级不透明度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

I do not want to inherit the child opacity from the parent in CSS.

I have one div which is the parent, and I have another div inside the first div which is the child.

I want to set the opacity property in the parent div, but I don't want the child div to inherit the opacity property.

How can I do that?

解决方案

Instead of using opacity, set a background-color with rgba, where 'a' is the level of transparency.

So instead of:

background-color: rgb(0,0,255); opacity: 0.5;

use

background-color: rgba(0,0,255,0.5);

这篇关于我不想从 CSS 中的父级继承子级不透明度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:我不想从 CSS 中的父级继承子级不透明度

基础教程推荐