答案 0 :(得分:6)
#settingNev li {
display: block;
margin: 0;
padding: 0;
clear:both;
}
添加清除两者以显示为列表
答案 1 :(得分:0)
如果您不想横向列表,请不要使用float:left;
答案 2 :(得分:0)
清除花车是您的答案使用clear:both;
或overflow:hidden
#settingNev li {
overflow:hidden /*Add this to the make li in flow*/
display: block;
margin: 0;
padding: 0;
}
有关详细信息,请参阅This
答案 3 :(得分:0)
从float: left;
和a
样式
span
答案 4 :(得分:0)
我在CSS中添加了以下补丁。
#settingNev ul {
display:table !important;
}
#settingNev ul li {
display:table-row !important;
}
以下是整个代码配对: