How to center jquery ui buttons?

后端 未结 2 1968
夕颜
夕颜 2021-02-01 04:43

Adding this to CSS does not work:

.ui-dialog-buttonpane { text-align: center; } 

The buttons are still on the right side.

What should I

2条回答
  •  旧巷少年郎
    2021-02-01 05:23

    Ok. I also needed to remove the float. This works:

    .ui-dialog .ui-dialog-buttonpane { 
        text-align: center;
    }
    .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { 
        float: none;
    }
    

提交回复
热议问题