私は JQuery Mobile を使用ui-grid-a
しており、以下のコードに示すように 2 つの要素の幅を設定しようとしています。結果は、幅が に等しい 2 つの要素です50:50%
。入力テキストの幅と80%
ボタンを20%
同じ行に配置したいと思います。どうすればこれを行うことができますか?
<div data-role="footer" data-theme="a" class="ui-grid-a" data-position="fixed">
<div class="ui-block-a" >
<input id="outgoingMsg" placeholder="Your Message . . .">
</div>
<div class="ui-block-b" >
<div style="margin: 10px 0 0 0;">
<a id="callDialog" href="#dialog" type="button"
data-theme="b" data-rel="dialog"
data-transition="slidedown">Send</a>
</div>
</div>
</div>