user4692688
user4692688

Reputation:

Bootstrap Button is not showing well in mozilla firefox

check image

enter image description here

in image,ok button is not showing well,it will fine after 1 or 2 second automatically after showing,the problem is only find in mozilla firefox

Upvotes: 2

Views: 409

Answers (1)

redelschaap
redelschaap

Reputation: 2834

Sounds like a transform or transition related thing to me. Are there any transform css properties on the modal or the button? Then try to overrule them and see if that helps:

.modal.fade .modal-dialog {
    transition: none 0s ease 0s ;
}

Upvotes: 1

Related Questions