我的水平菜单在我的电脑和 iPhone 上运行良好,但在我的 Android 手机上运行不佳。
当浏览器尺寸较小时,菜单必须有两行。在我的 Android 手机上,它只显示 1 行,两条线相互重叠。但是当我在手机上刷新页面时,菜单以正确的方式出现!
有谁知道出了什么问题?
这是网站http://nederlandoverzicht.nl/cs
这是我的菜单 CSS 代码
#menu ul{list-style-type:none;
width: 90%;
margin: 0px auto;
display: table;
table-layout: fixed; /* the magic dust that ensures equal width */
text-align:center;
}
#menu ul li{
display: block;
width:33.3333333334%;
color:#fff;
padding-top:10px;
font-size:12px;
float:left;
font-family:"Tahoma";}
#menu{background-color:#bd4545;
border-radius: 5px;
height:58px;
width:100%;}