CSS背景图像未按预期显示

2ic8powd  于 2023-02-01  发布在  其他
关注(0)|答案(1)|浏览(97)

我试着把一个图像,在背景中,在一个大的div的两端。
CSS代码:

}
.headall {
    background-color: #44546a;
    /*width: 100%;*/
    /*top: 0 !important;*/
}
.headl {
    width: 12%;
    float: left;
    /*display: table-cell;*/
    justify-content: right;
    transform: scaleX(-1);
    background-image: url(./images/leaves.png);
    background-repeat: no-repeat;
    background-size: 130px;
    
}

.headctr {
    width: 76%;
    display: inline-block;
    justify-content: center;
}

.headr {
    width: 12%;
    float: right;
    display: table-cell;
    justify-content: right;
    background-image: url(./images/leaves.png);
    background-repeat: no-repeat;
    background-size: 130px;
}

但是,图像将不会显示。
将图像放置在主文件中,可以工作,但它将图像放置在前景中。

t0ybt7op

t0ybt7op1#

你需要加引号。如果你的图片文件和你的css不在同一个文件夹里,你需要加两个点。

background-image: url("../images/leaves.png");

相关问题