添加position:absolute:
CSS
ul li ul{
display: none;
position: absolute; /*Add this */
}
Run Code Online (Sandbox Code Playgroud)
left:8px如果你想左对齐,也添加如下:
ul li ul{
display: none;
position: absolute;
left:8px; /* Add this too for left align*/
}
Run Code Online (Sandbox Code Playgroud)