【发布时间】:2015-04-02 04:59:04
【问题描述】:
我们的网站 (http://462184.hs-sites.com/) 上有一个粘性菜单,其宽度设置为 100%。但是,正如您所看到的,菜单左侧仍然缺少几个像素。
我无法弄清楚它与什么冲突。非常感谢您的帮助!
【问题讨论】:
我们的网站 (http://462184.hs-sites.com/) 上有一个粘性菜单,其宽度设置为 100%。但是,正如您所看到的,菜单左侧仍然缺少几个像素。
我无法弄清楚它与什么冲突。非常感谢您的帮助!
【问题讨论】:
您只是想在 css 中提供left:positionvalue。请使用.custom_menu-container.nav-sticky{left:0;}... 完成。
【讨论】:
我为你修好了,只需复制并粘贴整个内容 找: .custom_menu-container.nav-sticky{background:#29a2f3;position:fixed!important;top:0;transition:all .5s ease 0s;width:100%;z-index:10}
替换为:
.custom_menu-container.nav-sticky{background:#29a2f3;position:fixed!important;top:0;transition:all .5s ease 0s;width:100%;z-index:10;left:0;}
【讨论】:
进行这些更改:
.custom_menu-container.nav-sticky{
left: 0; /* add */
postition: fixed; /* remove !important */
}
【讨论】: