12

我正在寻找一个没有固定宽度的 div 在视频上居中,所以如果调整窗口大小,div 将随之缩小,但仍保持在中心。我目前的设置接近于使用 left:50% 和一半负边距的正确设置。问题显然是它向左移动,因为负边距是固定的。有任何想法吗?谢谢!

我的 HTML:

<div id = 'top-container'>
   <video id='top-vid' autoplay loop width=100% height='auto' class='no-mobile'>
       <source src='DS_Intro.mov' type='video/mp4'>
       <source src='test.webm' type='video/webm'>
   </video>

   <div id = 'top-content'>
       <div id = 'top-text'>
           <div id = 'top-img'>
               <img src='ds_white.png' width = "100%" height = 'auto'>
           </div>
           <h1 id = 'top-slogan'>a boutique video production studio</h1>
       </div>
   </div>
</div>

我的 CSS:

#top-container{
    width:100%;
    height:100%;
}

#top-content{
    max-width:1200px;
    margin-right:auto;
    margin-left:auto;
}

#top-img{
    width:100%;
    padding-bottom: 10%;
}

#top-slogan{
    text-align:center;
    padding-bottom:10%;
    font-weight: 100;
    color:#5DBCD2;

}

#top-text {
    top: 50%;
    left: 50%;
    margin-left: -360px;
    position:absolute;
    width:50%;

}

这是小提琴

4

1 回答 1

20

这可以使用transform: translate(-50%, -50%); 通过使用这个内部元素可以是动态的(不需要负边距),参见这个例子

http://jsfiddle.net/Mfsfm/2/

于 2013-07-10T14:43:30.813 回答