使用svg image

时间:2017-07-22 16:46:17

标签: css

我的下拉列表仅在有人登录时才有效

这是我的css代码

.hasDropdown>a:after {
    content: "\e259";
    font-family: Glyphicons Halflings;
    position: absolute;
    top: 0px;
    right: 13px;
    display: block;
    font-size: 13px;
    color: #e1b130;
}
.hasDropdown>a.isActive:after {
    content: "\e260";
}

以上工作正常..我想要做的是使用箭头svg图像而不是使用字体真棒我试过以下。

.hasDropdown>a:after {
        content: url(arrow.svg);
            position: absolute;
        top: 0px;
        right: 13px;
        display: block;
        color: #e1b130;
    }

但它没有显示

1 个答案:

答案 0 :(得分:0)

你试过了吗?

.hasDropdown>a:after {
    background-image: url(arrow.svg);
    background-position: center center;
    background-size: cover;
    width: 40px;
    height:40px;
    position: absolute;
    top: 0px;
    right: 13px;
    display: block;
    color: #e1b130;
}