bootstrap css選擇不同的寬度
阿新 • • 發佈:2018-11-17
分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow
也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!
剛開始使用bootstrap css開源專案。遇到一個問題,預設的input 寬度太大,需要找小一點的。
其實只需要在input tag中選用預定義的較小的寬度即可。比如:
<input type="number" class="input-small"></input>
.input-mini { width: 60px;}.input-small { width: 90px;}.input-medium { width: 150px;}.input-large { width: 210px;}.input-xlarge { width: 270px;}.input-xxlarge { width : 530px;}