Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS individual background properties</title> <style> body { background-color: #f0e68c; background-image: url("/examples/images/smiley.png"); background-repeat: no-repeat; background-attachment: fixed; background-position: 250px 25px; } </style> </head> <body> <h1>This is a heading</h1> <p>This is a paragraph.</p> </body> </html>