How to center jquery ui buttons?

后端 未结 2 1865
夕颜
夕颜 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;
    }
    
    0 讨论(0)
  • 2021-02-01 05:34

    In my case I also needed to add !important to the float property

    .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
        text-align: center;
        float: none !important;
    } 
    
    0 讨论(0)
提交回复
热议问题