小编典典

在CSS中定义的src属性

css

我需要在CSS中定义的src属性。有没有办法指定这个属性?


阅读 1381

收藏
2020-05-16

共1个答案

小编典典

divID {

    background-image: url("http://imageurlhere.com");
    background-repeat: no-repeat;
    width: auto; /*or your image's width*/
    height: auto; /*or your image's height*/
    margin: 0;
    padding: 0;
}
2020-05-16