程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> css-請問html標簽如何水平

css-請問html標簽如何水平

編輯:編程綜合問答
請問html標簽如何水平

代碼和效果如下,請問如何設置能讓input和select在一個水平線上

css
.div-distance {
    margin-bottom:10px;
    margin-top:10px;
}

下面是html
<div class="div-distance">地&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;址 :&nbsp;
<select id="province" style="width:100px"><option>省份</option></select>
<select id="city" style="width:120px"><option>地級市</option></select>
<select id="district" style="width:100px"><option>縣/區</option></select>
 <input type="text" id="other" v-model="user_info.other" placeholder="詳細地址" style='height:24px;'>
</div>

圖片說明
謝謝

最佳回答:


給input text增加點padding和margin
但是請慎重,因為不同浏覽器,select的高度可能不同。
最好用一套現成的css庫統一界面。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved