织梦后台在谷歌内核浏览器(如360)下的窜位问题

  文件位置:dede/templets/index_menu2.htm
  大约在71行:

.sitemu li {
    padding:0px 0px 0px 18px;
    line-height:22px;
    background:url(images/arr4.gif) no-repeat 5px 9px;
}

  在后边补一个overflow:hidden;就行了:

.sitemu li {
    padding:0px 0px 0px 18px;
    line-height:22px;
    background:url(images/arr4.gif) no-repeat 5px 9px;
    overflow:hidden; 
}

猜你喜欢

转载自blog.csdn.net/jklgfgdsr/article/details/78757490