Question

I created this simple code, It it just a button that stays on a "push" state when clicked and returns to normal when clicked again.

THE PROBLEM: by using float:right the text in the label goes to right, and if i dont set the float it goes to the left by default. but when I put float:center it stays on the left. If someone can help me put the text on the center I would be happy. thank you!

This is my code from jsfiddle

Was it helpful?

Solution

The jQuery Mobile element you want to center is the one nested within your fieldset with the .ui-btn-text class:

#ui-2 .ui-btn-text {
    text-align : center;
    width      : 100%;
}

http://jsfiddle.net/nfGmJ/10/

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top