Tag Archives: CSS Hack for chrome
CSS Hack for Safari 3.0 and Google Chrome
Assume as in your html code there is div name #main-nav like <div id=”main-nav”></div> Please add these tag below into your css external file:- #main-nav { overflow:hidden; top:-80px; left:170px; } /* this is for other browsers */ @media screen and (-webkit-min-device-pixel-ratio:0) { /* Safari 3.0 and Chrome rules here */ #main-nav { overflow:hidden; top:30px; left:-30px; [...]