height issue in bootstrap switch

流过昼夜 提交于 2019-12-12 01:54:38

问题


Bootstrap switch with on text 'Yes'

I am facing the problem with height in Bootstrap switch. I am not able to change the height of the switch. How can I change the height of the switch.


回答1:


Just add following css to your page and adjust height, padding and margin according your design.

div.bootstrap-switch-container {
    height: 25px;
}
.bootstrap-switch .bootstrap-switch-handle-on, .bootstrap-switch .bootstrap-switch-handle-off, .bootstrap-switch .bootstrap-switch-label  {
    padding: 3px 12px;
}
div.bootstrap-switch {
    margin-top: -4px;
}


来源:https://stackoverflow.com/questions/40790234/height-issue-in-bootstrap-switch

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!