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

Popular posts from this blog

Detect support for Shoutcast ICY MP3 without navigator.userAgent in Firefox? -

web - SVG not rendering properly in Firefox -

java - JavaFX 2 slider labelFormatter not being used -