传单缩放控件+/-外观

问题描述 投票:0回答:1

我已经注意到Leaflet Zoom Control的下划线带有+和-。反正有没有删除下划线?我尝试更改“文本”,但该文本也带有下划线。

TIA寻求任何帮助jdadwilson

leaflet zoom
1个回答
0
投票

通常,下划线不是可见的,但是我认为您已经定义了自己的CSS,并且在这里已经为所有text-decoration元素用text-decoration: underline !important覆盖了a属性。

如果不需要,请不要使用!important

将此添加到您的CSS文件:

.leaflet-bar a, .leaflet-bar a:hover {
    text-decoration: none !important;
}
© www.soinside.com 2019 - 2024. All rights reserved.