0

我们的应用程序有一个所有页面通用的主 .css,我们不允许更改此文件中的任何内容。

我们有一个条目如下:

ul li{display:block;padding:0 0 0.5em 15px;margin:0 0 0 0;background:url(../images/bullet.gif) top left no-repeat;}

我正在其中一个 jsp-s 上实现预测搜索,为此我有一个特定的 css 文件,如下所示

.ac_results {
    padding: 0px;
    border: 1px solid black;
    background-color: white;
    overflow: hidden;
    z-index: 99999;
}

.ac_results ul {
    width: 100%;
    list-style-position: none;
    list-style: none;
    padding: 0;
    margin: 0;
    list-style: disc inside;
}

.ac_results li {
    margin: 0px;
    padding: 2px 5px;
    cursor: default;
    display: block;
    /* 
        if width will be 100% horizontal scrollbar will apear 
        when scroll mode will be used
    */
    /*width: 100%;*/ 
    font: menu;
    font-size: 12px;
    /* 
    it is very important, if line-height not setted or setted 
    in relative units scroll will be broken in firefox
    */
    line-height: 16px;
    overflow: hidden;
}

.ac_loading {
    background: white url('indicator.gif') right center no-repeat;
}

.ac_odd {
    background-color: #eee;
 }

.ac_over {
    background-color: #0A246A;
    color: white;
}

我的问题是我无法bullet.gif从我当前的预测搜索列表中删除它。如果我添加背景:无,我将失去所有现有的背景颜色。我怎样才能阻止它bullet.gif出现在我的列表中。

请注意:我也试过了background-image:none;,但它没有用,bullet.gif仍然出现在我的搜索列表中:(

问候,米

4

2 回答 2

1

而不是background: none尝试:

background-image: none
于 2012-09-21T15:45:42.837 回答
1

你应该写

 background-image:none;
于 2012-09-21T15:46:31.837 回答