Fit website background image to screen size

后端 未结 13 904
孤独总比滥情好
孤独总比滥情好 2020-12-01 06:42

I\'m just starting on a website and I already encounter a small problem where I can\'t find a specific solution to.

I wanted to make my website background fit any sc

13条回答
  •  执念已碎
    2020-12-01 07:21

    Background image fix to screens with browser compatibility css

    .full-screen {
        height: 100%;
        width: 100%;
        background-image: url(../images/banner.jpg);
        background-size: cover;
        background-position: center;
        //for browser compatibility
        -moz-background-size: cover;
        -webkit-background-size: cover;
        -o-background-size: cover;
    }
    

提交回复
热议问题