jquery mobileを使用して2つのボタンを表示する必要があり、コードは次のとおりです:http: //jsfiddle.net/kiranj/rQ3mh/3/
ただし、1)最初のボタンが左揃えで幅が40%に固定されていること、および2)2番目のボタンが右揃えで幅が40%に固定されていることを確認する必要があります。
このシンプルな外観の機能を実現する上で、いくつかの重要なことが欠けているようです。ヘルプに感謝します
参考までに、コードは次のとおりです。HTML:
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
</head>
<body>
<br/><br/><br/>
<div data-role="fieldcontain">
<input type="submit" name="agree" data-inline="true" data-corners="false" data-theme="b" id="pageptosagree" value="Agree" />
<input type="submit" data-inline="true" data-corners="false" name="notAgree" id="pagetosdonotagree" value="I Do Not Agree" />
</div>
</body>
</html>
これがcssです:
div.divinput div{
overflow: hidden;
}
div.divinput div.buttonleft div{
width:40%;
float:left;
}
div.divinput div.buttonright div {
float:right;
width:40%;
}
.clear {
clear: both;
}