如何集中jQuery弹出标题?

我有这个jQuery popup,我这样调用

$("#createprofilepopup").dialog( { title: 'Title text',height: 490,width: 580 } );

但它似乎左对齐.有没有办法让标题居中?

谢谢!!

解决方法

添加CSS规则:

.ui-dialog .ui-dialog-title {
  text-align: center;
  width: 100%;
}

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: <span id=&quot...
jQuery 添加水印 <script src="../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...