【发布时间】:2016-01-23 03:53:08
【问题描述】:
我的 Wordpress 网站上有一个固定的覆盖(全屏)。我希望固定 div 内的元素是水平/垂直中心。我能找到的所有示例都将父级设置为相对,但高度和宽度必须设置为 100%。
html
<div class="overlay">
<nav class="menu">
<?php wp_nav_menu( array( 'container_class' => 'main-nav', 'theme_location' => 'primary' ) ); ?>
</nav>
</div>
css
.overlay{
position: fixed;
display: none;
z-index: 50;
top: 0; left: 0;
height: 100%; width: 100%;
background: rgba(0, 0, 0, 0.85);
overflow: auto;
}
.menu {
}
我尝试使用 y/x-translate 但父级必须是相对的
【问题讨论】: