Fluid input-append in Bootstrap Responsive

前端 未结 5 1595
清歌不尽
清歌不尽 2020-12-03 03:25

I\'ve been struggling to get an input with an input-append element to have the correct width in a fluid layout. I\'m using v2.0.4 of Bootstrap. As I resize to make the page

5条回答
  •  广开言路
    2020-12-03 04:25

    The responsive css is what's tripping this up.

    By overriding some of the responsive css using

      #msisdn {
        width: 75%;
        display: inline-block;
      }
    

    hopefully you can see what's happening. This will get you close enough hopefully.

提交回复
热议问题