IT Placement Papers Web Technologies CSS
This category contains CSS Interview Questions and Answers |
How do I have a fixed (non-scrolling) background image?
|
|
|
|
|
With CSS, you can use the background-attachment property. The background attachment can be included in the shorthand background property, as in this example:
body {
background: white url(example.gif) fixed ;
color: black ;
}
Note that this CSS is supported by Internet Explorer, Mozilla, Firefox Opera, Safari, and other browsers. In contrast, Microsoft's proprietary BGPROPERTIES attribute is supported only by Internet Explorer.
Only registered users can write comments. Please login or register.
|