4

我似乎无法用通常的“margin:0px auto 0px auto;”来定位这个视频标签。帮助小伙子们!感谢您查看这个!

#wrapper #trailer {
    position: absolute;
    z-index: 3;
    margin-top: 55px;
    width: 987px;
    height: 620px;
    background-color: #000;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    border: 1px solid #009;
}
#wrapper #trailer #close {
    position: absolute;
    z-index: 2;
    top: 20px;
    right: 231px;
    cursor: pointer;
}
#wrapper #trailer video {
        margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    border: 1px solid #009;
}

和 html 并按要求解释我的场景:

<div id="trailer">
<img id="close" src="images/close.png" alt="close" />
<div id="video">
<video controls  autoplay="autoplay" poster="video/trailer.jpg" width="600"      onclick="if(/Android/.test(navigator.userAgent))this.play();">
<source src="video/trailer.mp4" type="video/mp4" />
<source src="video/trailer.webm" type="video/webm" />
<source src="video/trailer.ogv" type="video/ogg" />
<embed src="video/flashfox.swf" width="600" height="480"  flashVars="autoplay=true&amp;controls=true&amp;loop=true&amp;src=trailer.mp4" allowFullScreen="true" wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer_en" />
</video>
</div>
</div>
4

5 回答 5

13

实际上,当涉及到样式表时,html5 视频和图像都算作文本。因此,您必须进行的唯一更改就是在您的 css 代码中。使用<div id="video>您包装视频的标签,您只需添加:

#video {
   text-align: center;
   //rest of rules here
}

而不是整天玩利润。

于 2012-10-23T15:36:40.577 回答
11

如果您不知道您的视频,您仍然可以使用 css 转换将其居中:

video {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
于 2016-08-11T09:05:43.627 回答
6

您必须margin: 0 auto在周围设置<div id="video">,而不是<video>标签:

#video {
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    border: 1px solid #009;
}

代替

#wrapper #trailer video {
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    border: 1px solid #009;
}
于 2012-10-23T15:33:31.640 回答
0

您需要在视频 div 上设置宽度,以便margin: 0 auto; 正常工作。

于 2012-10-23T15:27:59.420 回答
0
//Try This
#parant{
 width:100%;
 height:300px;
 text-align:center;
}
#video{
width:100px;
height:100px;
margin:auto;

}

于 2016-08-11T09:09:00.987 回答