是否可以使用渐变+背景图像的背景

时间:2012-06-27 09:40:10

标签: html css html5 css3

我正在尝试将箭头图像添加到链接中,并将其放在中间位置。 我的链接也有一个背景渐变,我试图将背景图像应用到右侧。

CSS

   #nav a.linkchildflyout:link,
    #nav a.linkchildflyout:active,
    #nav a.linkchildflyout:visited 
    {
        display:block;
        padding:0px 5px;
        text-decoration:none;
        background: #b95d73; /* Old browsers */
        background: -moz-linear-gradient(top, #b95d73 0%, #970e2e 0%, #9c1a38 0%, #910022 52%, #b95d73 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b95d73), color-stop(0%,#970e2e), color-stop(0%,#9c1a38), color-stop(52%,#910022), color-stop(100%,#b95d73)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #b95d73 0%,#970e2e 0%,#9c1a38 0%,#910022 52%,#b95d73 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #b95d73 0%,#970e2e 0%,#9c1a38 0%,#910022 52%,#b95d73 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #b95d73 0%,#970e2e 0%,#9c1a38 0%,#910022 52%,#b95d73 100%); /* IE10+ */
        background: linear-gradient(top, #b95d73 0%,#970e2e 0%,#9c1a38 0%,#910022 52%,#b95d73 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b95d73', endColorstr='#b95d73',GradientType=0 ); /* IE6-9 */
        color: white;
    }

    #nav a.linkchildflyout
    {
        background-image: url(Images/arrow.png);
        background-position: right center;
        background-repeat: no-repeat;
    }

2 个答案:

答案 0 :(得分:3)

您可以(并且应该)使用:before:after伪元素来实现此类效果。

这是 Great article on the subject!

答案 1 :(得分:1)

是的,有css3多个背景属性。你可以这样写:

#nav a.linkchildflyout{
 background:linear-gradient(top, #b95d73 0%, #970e2e 0%, #9c1a38 0%, #910022 52%, #b95d73 100%),url(Images/arrow.png) no-repeat right center;
}

阅读此内容以获取更多http://www.css3.info/preview/multiple-backgrounds/