1
私は自分のページの本体にビデオを集中させようとしています。ページの上部にナビゲーションがあり、下部にフッターがあり、ビデオ自体に関する情報が含まれています。重複しないでFlexboxコンテンツのセンタリングナビゲーション
私がやりたいことは、ビデオが常に中央揃えになるようにすることですが、サイズ変更時にナビゲーションとフッターがビデオと重ならないようにすることです。
.Site {
display: flex;
flex-direction: column;
height: 100vh;
overflow: hidden;
align-items: center;
align-content: center;
}
.Site-content {
flex: 1 0 auto;
width: 100vw;
display: flex;
flex-flow: column nowrap;
justify-content: center;
align-items: center;
}
.Site-header,
.Site-footer {
flex: none;
position: absolute;
z-index: 600;
height: 10vh;
width: 100vw;
}
.Site-header {
top: 0;
border-bottom: 1px solid red;
}
.Site-footer {
bottom: 0;
border-top: 1px solid red;
}
.video-container {
position: relative;
width: 70%;
height: 0;
padding-bottom: 56.25%;
margin-left: auto;
margin-right: auto;
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
<body class="Site">
<div class="Site-header">This is a header</div>
<div class="Site-content">
<div class="video-container">
<iframe src="https://player.vimeo.com/video/100978843" width="640" height="360" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
</div>
<div class="Site-footer">This is the footer</div>
</body>
私はposition: absolute
を除去することにより、header
とfooter
を変更しようとしたが、それはフレキシボックスのセンタリングを破るようだ:ここで私は現時点で持っているコードです。
どうすればこの問題を修正できますか?