在bootstrap4内联表单中选择2多个select缩小

时间:2017-03-31 22:28:09

标签: html css select2 bootstrap-4 jquery-select2-4

下面是一个演示我的问题的片段。问题是每当我输入字段时字段就会变小。

$(function() {
  $("select").select2({
    placeholder: "Select a word",
    width: "100%"
  });
});
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/css/select2.min.css" rel="stylesheet"/>
<link href="https://select2.github.io/select2-bootstrap-theme/css/select2-bootstrap.css" rel="stylesheet"/>

<script src="https://code.jquery.com/jquery-3.2.1.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/js/select2.full.js"></script>
<div class="container">
<form class="form-inline">
<div class="form-group row">
<div class="col-sm-12">
<select multiple="multiple" name="word" id="word">
  <option value="1">A really long string</option>
</select>
</div>
</div>
</form>
</div>

如何防止场缩小?

1 个答案:

答案 0 :(得分:1)

萎缩与

有关

width: 100%

select正在尝试从父容器中获取它的宽度,但在任何时候都不会有父指定的宽度。

https://jsfiddle.net/wcy2L3pj/

我将您的代码放入该小提琴中,并将style="width: 100%;"添加到row父级和缩小的停止位置。如果您尝试移动该宽度定义,那么您将在每个其他元素上看到,使用百分比值并不会停止缩小。

但是,将style="width: 100%;"替换为style="width: 250px;",一个特定的像素值,缩小的问题就会停止。这是因为Select2可以在初始化时使用width: 100%设置来定义具体值。