How do I set the background image size in CSS?

后端 未结 3 806
隐瞒了意图╮
隐瞒了意图╮ 2021-01-29 00:50

So I have css code as follows:

.jumbobg {
    background: url(\'http://znc.mane-frame.com/static/silverleaf.png\') fixed          


        
3条回答
  •  说谎
    说谎 (楼主)
    2021-01-29 01:39

    Try this:

    background-image: url('http://znc.mane-frame.com/static/silverleaf.png'), url(../img/banner-1008444.jpg);
    background-repeat: repeat, no-repeat;
    background-position: 0 0;
    background-size: 350px 350px, cover;
    

提交回复
热议问题