- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Use CSS max-width property responsive for video player
You can try to run the following code to use a max-width property to make your video player responsive −
Example
<!DOCTYPE html> <html> <head> <meta name = "viewport" content = "width=device-width, initial-scale = 1.0"> <style> video { max-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>
- Related Articles
- Use CSS width property for a responsive video player
- Use CSS max-width property for responsive image
- Use CSS width property for responsive image
- CSS max-width property
- The max-width Property in CSS
- Creating a responsive Video Player using Video.js\n
- HTML DOM Video width Property
- Perform Animation on CSS max-width
- CSS width property
- CSS max-height property
- CSS min-width property
- CSS outline-width property
- Animate CSS width property
- Set min-width and max-width of an element using CSS
- The max-height Property in CSS

Advertisements