粘性菜单宽度 100% 但未填满屏幕
Sticky menu width 100% but not filling screen
我们网站 (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 */
}
我们网站 (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 */
}