0

我有一个 HTML 无序列表元素,应该没有显示项目符号(我使用自己的图像作为项目符号)。

我的问题:默认的黑色项目符号点出现在 UL 上,而实际上不应该有。 在此处输入图像描述

网站是一个 Dot Net Nuke 运行网站,看起来皮肤 CSS 导致了此错误。你知道我怎样才能阻止后面的子弹出现吗?

我的 CSS:

.infoTab ul {
    list-style-type: none;
    list-style-position: outside; 
    margin-left: 15px;
    padding: 0px;
}

.infoTab li {
    background-image: url("../../Site Images/headingIcon.png");
    background-position: 0px 2px;
    background-repeat: no-repeat;
    padding-left: 30px;
}
4

1 回答 1

3

skin.css第 281 行,你有

ul li {
    list-style-position: outside;
    line-height: 1.2em;
    list-style-type: disc;
}

然后 default.css 第 104 行

ul li {
    list-style-type: square;
}

, 覆盖

.infoTab ul {
    list-style-type: none;
    list-style-position: outside;
    margin-left: 15px;
    padding: 0px;
}
于 2012-11-05T23:18:26.480 回答