How to make full screen background in a web page

前端 未结 10 1549
予麋鹿
予麋鹿 2020-12-15 09:46

How to make an image as background for web page, regardless of the screen size displaying this web page? I want to display it properly. How?

10条回答
  •  误落风尘
    2020-12-15 10:00

    CSS

    .bbg { 
        /* The image used */
        background-image: url('...');
    
        /* Full height */
        height: 100%; 
    
        /* Center and scale the image nicely */
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;    
    }
    

    HTML

    
    
    .
    .
    .
    
    
    .
    .
    .
    
    

提交回复
热议问题