2

我试图改变图层切换器的颜色。但它没有改变。这是我的代码。我也在javascript中尝试过 osMap.addControl(new OpenLayers.Control.LayerSwitcher({ 'activeColor': "white", 'fontColor': "black" })); 但没有效果。

.olControlLayerSwitcher
    {
        position: absolute;
        top: 25px;
        right: 0;
        width: 20em;
        font-family: sans-serif;
        font-weight: bold;
        margin-top: 3px;
        margin-left: 3px;
        margin-bottom: 3px;
        font-size: smaller;
        color: white;
        background-color: transparent;
        z-index: 10000;
    }
    .olControlLayerSwitcher .layersDiv
    {
        padding-top: 5px;
        padding-left: 10px;
        padding-bottom: 5px;
        padding-right: 10px;
        background-color: #CCCCCC;
    }
4

1 回答 1

1

OL CSS 是在style属性中设置的,并且比您的覆盖更强大。您必须使用!important来覆盖它:

background-color: #CCCCCC !important;

请参阅CSS 特异性

于 2013-09-13T13:40:59.130 回答