我一直在尝试常规的 CSS3 下拉菜单。
// CSS
.board {
width: 600px;
height: 50px;
cursor: pointer;
}
.button {
width: 150px;
height: 50px;
float: left;
display: inline;
background-color: black;
color: white;
font: 20px Arial, Verdana, sans-serif;
}
.sboard {
width: 150px;
height: 100px;
background-color: black;
}
//HTML
<ul class = "board"><li class = "button">
<ul class = "sboard"></ul>
</li></ul>
由于我的设备对触摸没有响应,我似乎无法让它在 iPhone 上工作。我的谷歌研究只是产生了毫无意义的结果。我应该将哪些属性添加到列表中?