jquery - clear div float css property -
i using jquery ui dialog component dialog button aligned right. reason because of following property gets set automatically.
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; } if clear float: right property, alignment looks fine. tried through firebug. how clear css property css file?
override property. should work.
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: none !important; } to avoid !important can try add css (your custom css file) after css of jquery ui. load order relevant.
Comments
Post a Comment