【发布时间】:2015-04-27 15:00:38
【问题描述】:
我正在尝试使用位置垂直对齐 div。它适用于除 Internet Explorer 之外的所有浏览器。在 Internet Explorer 中,.nav-group 左对齐。我该如何解决这个问题。
HTML:
<div class="container">
<div class="nav-group">// Content</div>
</div>
CSS:
.container
{
width: 100%;
position: relative;
}
.nav-group
{
display: table;
background-color: red;
margin: auto;
width: 200px;
height: 100px;
position: absolute;
bottom: 50px;
left:0;
right:0;
}
【问题讨论】:
-
你试过 margin:0 auto 吗?
-
@Amit,没有运气。
-
你能创建一个演示吗?
-
我认为如果您将
display:table;更改为display:table-cell;它可能会起作用。
标签: html css internet-explorer