更改jquery对话框上按钮的字体大小

时间:2014-02-07 07:47:45

标签: jquery

我有一些简单的对话

$("#modal").dialog({
  autoOpen: false,
  height: 350,
  width: 600,
  modal: true,
  buttons: {
    Cancel: function() {
      $(this).dialog("close");
    }
  }
});

如何更改按钮中的文字大小 - Cancel

2 个答案:

答案 0 :(得分:1)

像这样编辑你的CSS;

 #dialog .ui-button-text {
     font-size: 15px; /* Or whatever smaller value works for you. */
 }

答案 1 :(得分:0)

试试这个

#modal{font-size: 20px; } /*where #model is button id*/