我正在使用jquery.wijmo-complete.all.2.3.8.min.css。
但我找不到答案......
码:

#slider
{
    width: 300px;
}
.wijmo-wijslider-incbutton
{
    /*Sets the styles of the outer edge of the increment button.*/
    background: CornflowerBlue;
}
#slider .ui-slider-handle
{
    /*Sets the styles of the thumb button.*/
    background:#310D4F;
    border-color: red;
}

最佳答案

您需要将背景图像设置为无。这是正确的CSS:

.wijmo-wijslider-incbutton, .wijmo-wijslider-decbutton {
        background-image: none;
        background-color: red;
    }

10-06 15:15