Background attachment part 1

The background-attachment Property



The background-attachment property sets whether a background image is fixed or scrolls with the rest of the page.
Even if an element has a scrolling mechanism, a "fixed" background doesn't move with the element.

The CSS:
body {
background-image: url("css_logo.png");
background-repeat: no-repeat;
background-attachment: fixed;
}
Try It Yourself

Result:
Tap Try It Yourself to play around with the code!

Comments

Popular posts from this blog

font-family part 1

Styling the list part 3