Here is an example http://jsbin.com/oqisuv/
CSS
body { background:#e7ebf2 url(http://i.imgur.com/R2VB6.png) center repeat-y; } .menu { width:989px; margin:auto; height:100px; background:#666666; line-height:100px; text-align:center; color:#fff; }
HTML
<body> <div class="menu">Hello</div> </body>
If you look at the example above in Google Chrome, you will see that .menu looks like margin-left:-1px or margin-right:1px .
In Firefox and IE, it looks great. How to fix it?
Unknown Error
source share