1. 程式人生 > >bootstrap css選擇不同的寬度

bootstrap css選擇不同的寬度

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow

也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!

               

剛開始使用bootstrap css開源專案。遇到一個問題,預設的input 寬度太大,需要找小一點的。

其實只需要在input tag中選用預定義的較小的寬度即可。比如:

<input
type="number" class="input-small">
</input>


input-small是預定義的一種類別,在bootstrap.css檔案中有一組這樣的類別:

.input-miniwidth: 60px;}.input-smallwidth: 90px;}.input-mediumwidth: 150px;}.input-largewidth: 210px;}.input-xlargewidth: 270px;}.input-xxlargewidth
: 530px;}




           

給我老師的人工智慧教程打call!http://blog.csdn.net/jiangjunshow

這裡寫圖片描述