fixed background image using css

Fixed background image in HTML page using CSS To fix the background image static at center, means no scrolling image! The following CSS page must be created. Have a look. h1 { background-color: green; } div { background-image: url(“d:\solid.jpg”); } p { background-color: yellow; } BODY { background-image:url(“d:\java-logo.jpg”); background-repeat: no-repeat; background-position: center; background-attachment: fixed; } […]

Share

fixed background image using css Read More ยป