在以下链接中:
每当用户访问时,在 IE 或 FF 中,菜单首先显示为展开几秒钟然后折叠。谁能告诉我我必须在哪里编辑以确保它不会在页面加载时扩展。只发生在某些页面上。
编辑:我做了以下,现在很好。
#topMainNav .dropdown {
position: absolute;
padding: 5px; /* padding: 5px 10px 5px 10px; */
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
-moz-border-radius-bottomright: 10px;
-moz-border-radius-bottomleft: 10px;
z-index: 1;
display: none; /* <<-- **ADDED THIS AND IT SOLVED THE PROBLEM** */
}