I am trying to create a flexible grid layout and I am having a problem with consistent width rendering in Opera. In Opera, the width of the elements is consistently smaller than other browsers. I am trying to use a 960 grid, but if it is not consistent, I can switch to fixed sizes.
Does anyone know how I can get Opera to display width just like other browsers?

Here are the CSS and HTML that I use for this demo
.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>
Paul sheldrake
source share