2012-08-31 71 views
1

我試圖將輸入框添加到按鈕類型樣式。我的努力如下。它可以工作,但輸入框的'按鈕'比沒有輸入框要胖(高)。是否有可能使高度相同?使用twitter引導的按鈕樣式內輸入

<div class="btn btn-info">I'm nice and slim</div> 
<div class="btn btn-info">help <input type="text" class="input-mini" placeholder="Type here"> I'm too fat!</div> 

fat button

+0

你有沒有嘗試設置按鈕自己的身高是多少? –

+0

來到這裏並實施了這個。然後我意識到這是一個可怕的想法。 –

回答

3
.btn > input { 
    font-size: 11px; 
    height: 16px; 
    line-height: 16px; 
    margin-bottom: 0; 
    padding-bottom: 0; 
    padding-top: 0; 
} 
+0

完美,謝謝! –