Input groups bigger than input in Bootstrap 3 using Jumbotron container

前端 未结 8 1814
后悔当初
后悔当初 2021-02-06 22:54

I\'m experimenting a strange behavior with Bootstrap 3 input groups. When I add an input-group-addon (text or icon) to a form inside a jumbotron, the input-group height is bigge

8条回答
  •  长发绾君心
    2021-02-06 23:57

    Instead of making the input bigger, make the span (input-group-addon) smaller. To do that, make its padding lower. So:

    .input-group-addon {
        padding: 0px 6px;
    }
    

提交回复
热议问题