How to center HTML5 Videos?

后端 未结 15 1787
终归单人心
终归单人心 2021-01-31 02:25

I\'m just messing around with some HTML5, and I was trying to center a video on the page. For some reason I can\'t get it to center. I\'ve tried to add a class to the video tag

15条回答
  •  迷失自我
    2021-01-31 02:37

    I was having the same problem, until I realized that elements are inline elements, not block elements. You need only set the container element to have text-align: center; in order to center the video horizontally on the page.

提交回复
热议问题