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

java - How to Configure JAXRS and Spring With Annotations -

visual studio - TFS will not accept changes I've made to a Java project -

php - Create image in codeigniter on the fly -