我正在尝试制作流畅的网格布局,但在 Opera 中遇到了宽度渲染不一致的问题。在 Opera 中,元素的宽度始终小于其他浏览器。我正在尝试使用流体 960 网格系统,但如果不一致,我可能会更改为固定尺寸。
有谁知道我如何让 Opera 呈现与其他浏览器相同的宽度?
这是我用于此演示的 CSS 和 HTML
.show_grid {
background: url(../img/grid.gif) no-repeat center top;
}
html, body{
margin: 0;
padding: 0;
}
.container {
width: 92%;
margin-left: auto;
margin-right: auto;
max-width: 936px;
padding-top: 15%;
}
.box {
width: 15.633%;
background: #006;
color: #999;
margin: 5% .55%
}
<div class="container show_grid">
<div class="box">2 column - browser name</div>
</div>