1

我正在尝试将输入框添加到按钮类型样式。我的努力在下面。它可以工作,但是带有输入框的“按钮”比没有输入框的要胖得多(高度)。是否可以使高度相同?

<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>

胖按钮

4

1 回答 1

3
.btn > input {
    font-size: 11px;
    height: 16px;
    line-height: 16px;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 0;
}
于 2012-09-01T01:18:45.317 回答