居中 <video> 问题
Centering <video> issue
我是这样使用的:
.centr {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
网站是这样的:
问题是画中画,没到位
使 <video>
元素在父元素 div 中居中的一种方法是使用 flexbox:
.container {
/* just styling, nothing important */
background-color: gray;
width: 500px;
height: 200px;
/* note these lines below */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
video {
width: 300px;
height: 150px;
background-color: #000;
}
<div class="container">
<video></video>
</div>
要使自动边距起作用,中心 class 的宽度必须为:
.center {
margin: 0 auto;
width: 400px;
}
然后,我将中心 class 应用到视频本身,而不是容器:
<video class='center'>
</video>
我是这样使用的:
.centr {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
网站是这样的:
问题是画中画,没到位
使 <video>
元素在父元素 div 中居中的一种方法是使用 flexbox:
.container {
/* just styling, nothing important */
background-color: gray;
width: 500px;
height: 200px;
/* note these lines below */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
video {
width: 300px;
height: 150px;
background-color: #000;
}
<div class="container">
<video></video>
</div>
要使自动边距起作用,中心 class 的宽度必须为:
.center {
margin: 0 auto;
width: 400px;
}
然后,我将中心 class 应用到视频本身,而不是容器:
<video class='center'>
</video>