CSE 154 Examples

Background Attachment Property

The Background Attachment property determines how the background changes when we scroll through the webpage.

Description

The Background Attachment property determines if the background scrolls with the page or remains fixed, etc. The property can take the following values:

Syntax :

              
                  element {
                    background-image: url('location_to_img');
                    background-attachment: property_name;
                  }

                  p {
                    background-image: url("www.pixel.com/cool-images/coolest.jpg");
                    background-attachment: scroll;
                  }
              
            

HTML :

CSS :

Live Preview :