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の1つに予測検索を実装しており、この目的のために次のような特定の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まだ検索リストに表示されています:(

よろしく、M

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 に答える