我使用jQuery UI按钮控件,但似乎不能调整大小(宽度和高度)。这里是
API documentation.我试图设置STYLE属性,但是然后LABEL不正确居中。谢谢。
解决方法
在style属性中尝试一下:
width: 300px; padding-top: 10px; padding-bottom: 10px;
要么
$(element).css({ width: '300px','padding-top': '10px','padding-bottom': '10px' });