Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道如何设置剑道 ui 滑块的宽度? 最好 a 会设置一个相对宽度。
我发现的唯一方法是这样,它只是固定宽度:
<input id="slider" class="balSlider" style="width:100px;" />
或者是否有 Javascript 选项或其他东西,以便我可以使用调整大小功能?
谢谢
好的, 这似乎工作得很好:
<input id="slider" type="range" style="width:100%;" />
试试下面的 CSS
.k-slider-horizontal .k-slider-buttons .k-slider-track { width:250px !important; }
谢谢抗体