Input group - two inputs close to each other

后端 未结 11 1127
刺人心
刺人心 2020-12-12 17:47

How can I make input group involves two inputs?

11条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-12 18:29

    Create a input-group-glue class with this:

    .input-group-glue {
      width: 0;
      display: table-cell;
    }
    
    .input-group-glue + .form-control {
      border-left: none;
    }
    
    

提交回复
热议问题