Input groups bigger than input in Bootstrap 3 using Jumbotron container

前端 未结 8 1798
后悔当初
后悔当初 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:38

    Last night, I had exactly the same problem. None of the fixes mentioned above worked in my context. What finally did do the job was setting the margin to 0:

    .input-group .form-control {
        margin: 0px !important;
    }
    

    Perhaps this helps someone with a similar problem!

提交回复
热议问题