首页 > 代码库 > 行内元素和块元素定位的问题

行内元素和块元素定位的问题

将行内元素设置为块元素,一个用float:left;;;;;;;;一个用float:right;

    <div class="form-group" style="position:relative;top:10px">          <label for="firstname" style=" display:inline-block;float:left;">用户别名</label>         <input type="text" style="float:right;width:55%;margin-right:5%;" class="form-control" id="admin_name" placeholder="请输入您的别名"/>         <input type="hidden" class="form-control" id="account" />    </div>

 

行内元素和块元素定位的问题