如何在不影响容器的情况下调整背景图像?

时间:2014-11-21 11:01:55

标签: css

我正在使用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;
}

有没有人有任何想法来解决这个问题?谢谢!

0 个答案:

没有答案