我正在使用ThemeForest here中的选举模板,这是original template。我正在尝试使用CSS淡出蓝色图像的边缘,但是更改会影响整个容器。我已经改变了背景颜色以反映第一个链接上的不良行为。
我想要做的是能够将CSS指令应用于只是图像。这是控制容器的部分:
#hero .q-container {
position: relative;
padding-top: 8%;
background-image: url(../img/sam.png);
background-repeat: no-repeat;
background-position: bottom 30% right 10%;
background-size: 30%;
}
我尝试使用以下内容,但它不起作用:
#hero .q-container img {
background-color: red;
}
有没有人有任何想法来解决这个问题?谢谢!