Fluid input-append in Bootstrap Responsive

前端 未结 5 1591
清歌不尽
清歌不尽 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:16

    replace

    with

    Add the following jQuery code.

    function sizing() {
      var formfilterswidth=$("#formfilters").width();
      $("#msisdn").width((formfilterswidth-46)+"px");
    }
    $(document).ready(sizing);
    $(window).resize(sizing);​
    

    And it allways looks good

    Small:

    enter image description here

    Large:

    enter image description here

提交回复
热议问题