How to Set Fixed Background Images as a Cover in Website Development

 Background-attachment can be fixed or scrolled as per requirement. 
  1. <style>  
  2.    #bacground_img {  
  3.    
  4.       background-attachment: fixed;  
  5.    
  6.       background-image: url("img/beach.jpg");  
  7.    
  8.       background-position: center center;  
  9.    
  10.       background-size: cover;  
  11.    
  12.       vertical-align: top;  
  13.    }  
  14. </style>