अपने वीडियो प्लेयर को प्रतिक्रियाशील बनाने के लिए, चौड़ाई संपत्ति का उपयोग करें और इसे 100% पर सेट करें
उदाहरण
<!DOCTYPE html> <html> <head> <meta name = "viewport" content="width=device-width, initial-scale=1.0"> <style> video { width: 100%; height: auto; } </style> </head> <body> <video width = "300" controls autoplay> <source src = "/html5/foo.ogg" type = "video/ogg" /> <source src = "/html5/foo.mp4" type = "video/mp4" /> </video> <p>To check the effect, you need to resize the browser.</p> </body> </html>