W3Schools.com

Style backgroundAttachment Property

Style Object Reference Style Object

Definition and Usage

The backgroundAttachment property sets or returns whether a background image should scroll with the content, or be fixed.

Syntax

Set the backgroundAttachment property:

Object.style.backgroundAttachment="scroll|fixed|inherit"

Return the backgroundAttachment property:

Object.style.backgroundAttachment

Value Description
scroll The background image will scroll with the rest of the page. This is default
fixed The background image stays fixed
inherit The setting of the background-attachment property is inherited from the parent element


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The backgroundAttachment property is supported in all major browsers.


Example

Example

Set the background-image to be fixed (will not scroll):

<html>
<head>
<style type="text/css">
body
{
background:#f3f3f3 url('img_tree.png') no-repeat right top;
}
</style>
<script type="text/javascript">
function displayResult()
{
document.body.style.backgroundAttachment="fixed";
}
</script>
</head>
<body>

<button type="button" onclick="displayResult()">Set background image to be fixed</button>
<br />

<h1>Hello World!</h1>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
<p>This is a paragraph</p>

</body>
</html>

Try it yourself »


Examples

More Examples

Toggle between scroll and fixed
Toggle between scroll and fixed backgroundAttachment.


Style Object Reference Style Object
WEB HOSTING
Best Web Hosting
PHP MySQL Hosting
Best Hosting Coupons
UK Reseller Hosting
Cloud Hosting
Top Web Hosting
$7.95/mo SEO Hosting
Premium Website Design
WEB BUILDING
XML Editor - Free Trial!
FREE Website BUILDER
Free Website Templates Free CSS Templates
Make Your Own Website
W3SCHOOLS EXAMS
Get Certified in:
HTML, CSS, JavaScript, XML, PHP, and ASP
W3SCHOOLS BOOKS
New Books:
HTML, CSS
JavaScript, and Ajax
STATISTICS
Browser Statistics
Browser OS
Browser Display
SHARE THIS PAGE