How to make a background image. So that when you scroll the body down it does not change. And completely flooded the screen.

I did like this. Via html .

  <body style="overflow:hidden;"> <section style="overflow-y:auto;"> <header></header> <section> //Content </section> </section> </body> 

    1 answer 1

     body{ -webkit-background-size: cover; background-size: cover; background-attachment: fixed; } 

    http://htmlbook.ru/css/background-size

    http://htmlbook.ru/css/background-attachment