CSS:如何使Blog Post Background透明 - 白色/浅色

时间:2017-03-15 22:37:33

标签: css post background blogger

我想知道如何让我的帖子的背景更轻。

从图像(下面的链接)可以看出,背景已经是透明的,但它真的很暗,有什么方法可以让它变得更亮或更透明但没有它那么黑。

我已经尝试了

.content-inner {
  background: rgba(0, 0, 0, 0.25)!important;
} 

以及

.content-inner {
  background: rgba( 255, 255, 255, .25)!important;
} 

但到目前为止它还没有奏效,根本没有变化。

enter image description here

谢谢!

1 个答案:

答案 0 :(得分:0)

如果你有结构 -

<style>
#element1{
opacity:0.4;
}

#element2{
opacity:1 !important;
}
</style>

<div id="element1">
 Here is image1
    <div id="element2">
    Here is image2
    </div>
</div>

第二个元素将取决于第一个...
'image2'有'不透明度:0.4'

您应该将它们分开 - &gt;

<div id="element1">Here is image1</div>
<div id="element2">Here is image2</div>