如何只为背景制作不透明度?

How to make opacity only for background?

我有一个表单,我需要为其添加不透明的背景。不幸的是,不透明度也采用了这种形式。如何从表单中删除不透明度并将其仅用于背景?

.container {
    width: 100%;
    height: 100%;
    position: fixed;
    visibility: visible;
    display: block;
    background-color: green;
    top: 0;
    left: 0;
    opacity: 0.5;
   }
    
.form {
    width: 150px;
    height: 200px;
    background-color: blue;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: black;
    align-items: center;
    margin: 0 auto;
    margin-top: 10px;
    border-radius: 8px;
    z-index: 2;
    opacity: 1; 
 }
<div class="container">
<div class="form">
<p>text</p>
<p>text</p>
<p>text</p>
</div>
</div>

不要使用不透明度使用 rgba() 或 hsla()

.container {
    width: 100%;
    height: 100%;
    position: fixed;
    visibility: visible;
    display: block;
    background-color: rgba(0,0,255,0.5);
    top: 0;
    left: 0;
    /* opacity: 0.5;  do not use opacity.*/
   }

I am trying to reduce the opacity of certain objects but it is not working for me

对背景使用 rgba 颜色而不是不透明度

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

只需使用带 alpha 的颜色。 例如 rgba(255,0,0,0.5) 0.5 是你的不透明度值

您好,如果您的背景没有任何图像。 然后你可以很容易地在它的背景上应用不透明度。 这是您可以使用的一些示例 ->

background-color: #00ff0055;
/*-- The value after six digit is your alpha color or opacity of background.--*/
background-color: #0f05; /*-- Same as previous one.--*/
background-color: rgba(0,255,0,.5); /*-- a extend for alpha color--*/

希望对您有所帮助。

background-color: green;替换为background-color: rgba(0, 128, 0, 0.5);

它会简单地解决它你可以直接对颜色应用不透明度

试试这个代码:

.container {
    width: 100%;
    height: 100%;
    position: fixed;
    visibility: visible;
    display: block;
    background-color: green;
    top: 0;
    left: 0;
    background-color: rgba(0,128,0,0.5);
   }
    
.form {
    width: 150px;
    height: 200px;
    background-color: blue;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: black;
    align-items: center;
    margin: 0 auto;
    margin-top: 10px;
    border-radius: 8px;
    z-index: 2;
 }
<div class="container">
<div class="form">
<p>text</p>
<p>text</p>
<p>text</p>
</div>
</div>