jquery-mobile – 在jquery mobile中右对齐一个元素

前端之家收集整理的这篇文章主要介绍了jquery-mobile – 在jquery mobile中右对齐一个元素前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我创建了这个元素形式:
<div class = "ui-grid-a">
                <div class= "ui-block-a">
                    <div data-role="fieldcontain" class = "ui-hide-label">
                        <label for="birth-place">Birth Place</label>
                        <input type="text" name="birth-place" id="birth_place" value="" placeholder="Birth Place" />
                    </div>
                </div>
                <div class = "ui-block-b">
                    <div data-role = "fieldcontain" class="ui-hide-label">
                        <label for="province">Province</label>
                        <input type="text" name="province" id="province" value="" placeholder="PR" />
                    </div>
                </div>
            </div>

我想将元素省对齐.我怎样才能做到这一点?

解决方法

试试这个: < span style =“float:right”>< label for =“province”>省< / label>< / span> (当然你也可以将它放在外部的css文件中)
原文链接:https://www.f2er.com/jquery/177733.html

猜你在找的jQuery相关文章