我正在创建一个新主题,菜单显示为列表,包含项目,我不想这样做。 Here you have a link to the site
这是我的css代码
.links {
margin-left:250px;
list-style:none;
}
感谢。
答案 0 :(得分:0)
列表样式:无;是应用于ul而不是li标签。
答案 1 :(得分:0)
你应该添加
list-style: none;
到 .menu 类名指定的元素,而不是 .links (甚至不存在)。