Search results

CSS Structure in JavaScript Range Slider control

23 Mar 2023 / 1 minute to read

The following content provides the exact CSS structure that can be used to modify the control’s appearance based on the user preference.

Customizing the slider track

Use the following CSS to customize the slider track.

Copied to clipboard
.e-control-wrapper.e-slider-container.e-horizontal .e-slider-track {
    background: #007bff;
    height: 3px;
}

Customizing the slider handle

Use the following CSS to customize the slider handle properties.

Copied to clipboard
.e-control-wrapper.e-slider-container .e-slider .e-handle {
    background-color: #f9920b;
    border-radius: 50%;
    border: 0;
}

Customizing the slider limits

Use the following CSS to customize the slider limits.

Copied to clipboard
.e-control-wrapper.e-slider-container.e-horizontal .e-limits {
    background-color: rgba(69, 100, 233, 0.46);
}

Customizing the slider ticks

Use the following CSS to customize the slider ticks.

Copied to clipboard
.e-scale .e-tick.e-custom::before {
    content: '\e967';
    position: absolute;
}

Customizing the slider buttons

Use the following CSS to customize the slider buttons.

Copied to clipboard
.e-control-wrapper.e-slider-container .e-slider-button {
    background: #007bff;
    height: 25px;
    width: 25px;
}