在CSS中定义的src属性

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

回答:

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;

}

以上是 在CSS中定义的src属性 的全部内容, 来源链接: utcz.com/qa/433270.html

回到顶部