将背景色设置为透明CSS

时间:2019-11-06 19:27:49

标签: css

我正在为此page设置背景色为透明:

.page-id-714 .container-fluid {
  background-color: transparent;

}

但是我似乎无法解决正确的类或项目。谁能指出我正确的方向?

2 个答案:

答案 0 :(得分:2)

您将其设置为错误的班级。您需要在

上进行设置
.top-stripe {
  /* Current, it's set to background-color: #fbfbfb; */
  background-color: transparent;
}

请确保在我下面共享的选择器之后声明以上内容,否则需要使选择器更具体,或者需要使用!important(我不建议这样做,或者最好删除) top-stripe完全来自该声明。


这是您网页上的声明。

enter image description here

答案 1 :(得分:0)

尝试一下:

lmap