आप सीएसएस के साथ पृष्ठभूमि छवि के लिए प्रतिक्रिया प्राप्त करने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं -
उदाहरण
<!DOCTYPE html> <html> <head> <meta name = "viewport" content="width = device-width, initial-scale = 1.0"> <style> div { width: 100%; height: 300px; border: 2px dashed blue; background-image: url('https://www.tutorialspoint.com/python/images/python-data-science.jpg'); background-repeat: no-repeat; background-size: contain; } </style> </head> <body> <p>To check the effect, you need to resize the browser.</p> <div></div> </body> </html>