jQTouch 列表项目符号不显示
我正在尝试将 jQTouch 用于 iPhone Web 应用程序,但我希望页面上的内容能够具有正常的项目符号列表,而不是像 jqt 主题中的栏那样设置样式。所以我试图覆盖 theme.css 中的 css 选择器:
#jqt .content ul {
color: #fff;
border: none;
font: inherit;
padding: 0;
margin: 15px 10px 17px 10px;
}
#jqt .content ul li {
color: #fff;
border-top: none;
border-bottom: none;
list-style-type:disc;
padding: 10px 10px 10px 10px;
background-image: none;
overflow: hidden;
}
它工作得很好,因为它覆盖了它,但我没有得到任何可见的列表项目符号。有什么想法吗?
I am trying jQTouch for an iPhone web app, but I want content on the pages to be able to have normal bullet lists, not styled as the bars in the jqt theme. So I am trying to override the css selectors in the theme.css:
#jqt .content ul {
color: #fff;
border: none;
font: inherit;
padding: 0;
margin: 15px 10px 17px 10px;
}
#jqt .content ul li {
color: #fff;
border-top: none;
border-bottom: none;
list-style-type:disc;
padding: 10px 10px 10px 10px;
background-image: none;
overflow: hidden;
}
It works fine in that it overrides it, but I don't get any visible list bullets. Any ideas why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需覆盖
li
(而不是ul
)CSS:
HTML:
Just overwrite the
li
(not theul
)CSS:
HTML:
根据我所做的快速测试,隐藏的溢出似乎是问题所在。
这就是我在我的项目中使用的,它的工作就像一个魅力:
希望它有帮助
Overflow hidden seems to be the problem, based on a quick test i did.
This is what i am using for my project and its working like a charm:
Hope it helps
检查 LI 上的显示类型。我遇到了这个问题,因为它们本应是“列表项”,但被设置为“阻止”
Check the display type on the LI. I had this issue because they were set to "block" when they should have been "list-item"