प्रतिक्रियाशील छवि के लिए अधिकतम-चौड़ाई वाली संपत्ति को लागू करने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं
उदाहरण
<!DOCTYPE html> <html> <head> <meta name = "viewport" content = "width = device-width, initial-scale = 1.0"> <style> img { max-width: 100%; height: auto; } </style> </head> <body> <p>To check the effect, you need to resize the browser.</p> <img src = "https://www.tutorialspoint.com/python/images/python-data-science.jpg" alt = "Python Data Science" width = "400" height = "300"> </body> </html>