Monday, June 3, 2024
 Popular · Latest · Hot · Upcoming
3
rated 0 times [  5] [ 2]  / answers: 1 / hits: 22766  / 11 Years ago, wed, march 27, 2013, 12:00:00

I am trying my hand at jQuery Mobile and I find it a bit confusing because it's a mark-up driven framework.



I created a test page in which I am just trying to align one button to the right, but I am not able to do that. I tried float: right but it's not working. Although margin-left is working by giving a particular percentage, the same is not working when I resize the page.



Here is my Fiddle code. Any help would be great.



<div data-role=page>
<div data-role=header data-theme=b data-position=fixed>
<h1 style=font-size: 1.5em; text-align: left; margin-left: 70px;
data-role=none>Test</h1>
</div>

<div id=contentLogin align=center name=contentConfirmation data-role=content>

<p style=font-size: 0.85em; color: #000000>
<b>Welcome to my page</b>
</p>
<br>
<div class=ui-grid-b responsive>

<div style=margin: 0px; margin-top: 0px; margin: 0px; class=ui-block-a>

<div data-role=fieldcontain>
<label for=url class=alignleft>Username:*</label>
<input id=userId1 class=required name=uid_r placeholder= type=text>
</div>
<div data-role=fieldcontain>
<label for=url class=alignleft>Password:*</label>
<input id=Password1 class=required name=pwd_r value= type=password>
</div>
<button id=login data-theme=a type=button href=home.html data-mini=false data-inline=true >Login</button>

</div>
<div class=ui-block-b>BLOCK A ADS</div>
<div class=ui-block-c style=margin-top: 0px;>
BLOCK C
</div>

</div>
</div>
<div data-role=footer data-theme=b data-position=fixed>
</div>
</div>

More From » jquery

 Answers
8

Why not place your button inside a div and right align the div? everything inside the parent div including the button will be right aligned.



<div align=right><button id=login data-theme=a type=button href=home.html data-mini=false data-inline=true >Login</button></div>


Check out the fiddle http://jsfiddle.net/mayooresan/96s59/2/


[#79315] Tuesday, March 26, 2013, 11 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
skyler

Total Points: 646
Total Questions: 119
Total Answers: 96

Location: Bonaire
Member since Wed, Mar 29, 2023
1 Year ago
;