gpt4 book ai didi

php - 如何使用 CSS 覆盖此渐变滤镜?

转载 作者:行者123 更新时间:2023-11-28 08:13:12 25 4
gpt4 key购买 nike

我正试图摆脱/覆盖我主页上图像的渐变过滤器,我正在使用 this child theme

我是新手,但这是我一直在编辑的代码:

.image-section {
background: -moz-linear-gradient(top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.8) 80%, rgba(0,0,0,0.9) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.2)), color-stop(30%,rgba(0,0,0,0.5)), color-stop(80%,rgba(0,0,0,0.8)), color-stop(100%,rgba(0,0,0,0.9)));
background: -webkit-linear-gradient(top, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.5) 30%,rgba(0,0,0,0.8) 80%,rgba(0,0,0,0.9) 100%);
background: -o-linear-gradient(top, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.5) 30%,rgba(0,0,0,0.8) 80%,rgba(0,0,0,0.9) 100%);
background: -ms-linear-gradient(top, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.5) 30%,rgba(0,0,0,0.8) 80%,rgba(0,0,0,0.9) 100%);
background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.5) 30%,rgba(0,0,0,0.8) 80%,rgba(0,0,0,0.9) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33000000', endColorstr='#e6000000',GradientType=0 );
display: table;
overflow: hidden;
table-layout: fixed;
width: 100%;
}

我尝试将其更改为:

.image-section {
background: none;
background-color: transparent;
display: table;
overflow: hidden;
table-layout: fixed;
width: 100%;
}

我什至尝试过“!important”,但似乎没有什么可以解决的。这个 php(在 customize.php 中)可能与它有关吗?

global $wp_customize;

$images = apply_filters( 'altitude_images', array( '1', '3', '5', '7' ) );

最佳答案

我看了一下页面。您无法覆盖背景的原因是它使用媒体查询:@media all {}

正如强大的@BoltClock 所建议的那样,媒体没有添加特异性,因此或多或少地进行了快速修复:

CSS

div .image-section {
background: none;
}

将添加特殊性,因此如果最后一条规则不起作用,则可能是一些 javascript 或 php 在应用 css 之后应用了该类。

关于php - 如何使用 CSS 覆盖此渐变滤镜?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29142042/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com