简体   繁体   中英

Firefox html5 video is wonky

I'm working on a part of my website where I include a video, like this:

    <video style="display: block; margin: 0 auto;" src="Witches.mp4" width="1080" height="1920" controls>
      Video is not supported on your browser.
    </video>

But the resolution makes the firefox bottom control bar wonk out, like this. 我描述的问题

I tried deleting the css that centers the video and the same problem happens. I don't know if this is just my browser, or something wrong I did in the html, has anyone else experienced this?

Your aspect is width="1080" height="1920" , so it's taller than it is wide, maybe you meant to have it be width="1920" height="1080" ?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM