我正在尝试在我的网站中将视频居中,但我不想在 HTML 中使用中心标签,因为它有点过时了。我如何用 CSS 做到这一点?如果有帮助,这是我的 HTML 代码。
<center>
  <video width="320" height="240" controls>
    <source src="video.mp4" type="video/mp4">
    <source src="video.ogg" type="video/ogg">
    <source src="video.webm" type="video/webm">
    Your browser does not support the video tag.
  </video>
</center>