CSS背景图片网址

时间:2017-07-20 12:52:42

标签: css

我想在CSS气泡中插入一个图像,代码是正确的但没有出现, 你可以看看如何解决这个问题

.triangle-isosceles {
        position: relative;
        padding: 15px;
        margin: 1em 0 3em;
        color: #000;
        background: #f3961c;
        -moz-border-radius: 50px;
        -webkit-border-radius: 50px;
        border-radius: 50px;
        /*border-radius: 10px;*/
        background: linear-gradient(top, #f9d835, #f3961c);
    }

现在

之前
.triangle-isosceles:before {
        content: "";
        display: block; /* reduce the damage in FF3.0 */
        position: absolute;
        bottom: -15px;
        left: 50px;
        width: 0;
        border-width: 15px 15px 0;
        border-style: solid;
        border-color: #f3961c transparent;
    }

最后一个是

之后
.triangle-isosceles:after{
        content: url("/web/resources/images/paul.png");
        display: block;
        position: absolute;
        bottom: -130px;
        left: 12px;
        width: 110px;
        height: 110px;
        border:0;
        background: #3365d4;
        -moz-border-radius: 70px;
        -webkit-border-radius: 70px;
        border-radius: 70px;

              }

2 个答案:

答案 0 :(得分:0)

在“之后”版本中,您有两个错误:

  • 内容:这不是指定背景的正确标记,正确的标记只是“背景”
  • 背景:正如您可能通过阅读第一个错误所示,您定义的背景属性是指定背景的属性。必须删除此标记,因为如果不删除它将被覆盖。

所以CSS应该像这样:

.triangle-isosceles:after {
    background: url("/web/resources/images/paul.png");
    display: block;
    position: absolute;
    bottom: -130px;
    left: 12px;
    width: 110px;
    height: 110px;
    border:0;
    -moz-border-radius: 70px;
    -webkit-border-radius: 70px;
    border-radius: 70px;
}

您还应该考虑添加与更多浏览器的兼容性。您可以在此页面找到更多信息:https://www.w3schools.com/cssref/css3_pr_background-size.asp

编辑:这是一个将背景图片添加到“div”的工作CSS标记的示例:

#headerwrap {
    background: url(../images/homepage/header.jpg) no-repeat center top;
    margin-top: 60px;
    padding-top: 20px;
    text-align: center;
    background-attachment: relative;
    background-position: center center;
    min-height: 600px;
    width: 100%;

    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

希望这会有所帮助:)

答案 1 :(得分:0)

您还需要添加内容,之后无法使用内容

像这样:

.triangle-isosceles:after {
    content :'';
    background: url("/web/resources/images/paul.png");
    display: block;
    position: absolute;
    bottom: -130px;
    left: 12px;
    width: 110px;
    height: 110px;
    border:0;
    -moz-border-radius: 70px;
    -webkit-border-radius: 70px;
    border-radius: 70px;
}