Próbuję użyć mojej strony w jQuery Mobile i uważam, że jest to nieco mylące, ponieważ jest to framework oparty na marżach.Problem z wyrównaniem jQuery dla telefonu komórkowego
Stworzyłem stronę testową, w której próbuję wyrównać jeden przycisk w prawo, ale nie jestem w stanie tego zrobić. Próbowałem float: right
, ale to nie działa. Chociaż margin-left
działa, podając określony procent, to samo nie działa podczas zmiany rozmiaru strony.
Oto mój Fiddle code. Każda pomoc byłaby świetna.
<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>
Dziękuję you..Yeah że robi to trick.I nie wiem dlaczego nie myślałem o tym. – karthick
, jeśli odpowiedź pomogła ci w zaznaczeniu go jako poprawnej odpowiedzi. –