HTML CSS video inside flexbox
问题 <!DOCTYPE html> <html> <style> .d1 { background: blue; padding: 10px; display: flex; } video { margin: 10px; width: 100%; max-width: 500px; } </style> <body> <div class="d1"> <video controls> <source src="mov_bbb.mp4" type="video/mp4"> <source src="mov_bbb.ogg" type="video/ogg"> Your browser does not support HTML5 video. </video> </div> </body> </html> I use a video inside a flexbox like the above and the code works fine except two points: 1) The video size does not fit the control line that