Set size on background image with CSS?

后端 未结 18 1517
野性不改
野性不改 2020-11-22 12:38

Is it possible to set the size of the background image with CSS?

I want to do something like:

background: url(\'bg.gif\') top repeat-y;
background-si         


        
18条回答
  •  情歌与酒
    2020-11-22 13:09

    put the below code in the body of you css file
    
    background-image: URL('../images/wave-green-plain-colour.jpg') ;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width:100px;
    

提交回复
热议问题