Forms bootstrapTwitter3自然语言表单

Forms bootstrapTwitter3自然语言表单,forms,twitter-bootstrap-3,Forms,Twitter Bootstrap 3,我正在尝试使用类似于BootstrapTwitter3的表单 在全宽上看起来不错: [img 1] 但当我将尺寸更改为更低时,我得到: [img 2] 由于class=“form control”,它正在以这种方式改变,但是当我删除这个类时,我也删除了字段的外观 我的代码: <div class="row" ng-controller="SearchCtrl"> <div class="col-lg-12"> <form clas

我正在尝试使用类似于BootstrapTwitter3的表单

在全宽上看起来不错: [img 1]

但当我将尺寸更改为更低时,我得到:
[img 2]


由于
class=“form control”
,它正在以这种方式改变,但是当我删除这个类时,我也删除了字段的外观

我的代码:

<div class="row" ng-controller="SearchCtrl">
        <div class="col-lg-12">
        <form class="form-inline" role="search">
            Chcę

            <div class="form-group">
                <select class="form-control">
                    <option>Wynająć</option>
                    <option>Kupić</option>
                </select>
            </div>

            <div class="form-group">
                <select class="form-control">
                    <option>Mieszkanie</option>
                    <option>Pokój</option>
                    <option>Dom</option>
                    <option>Lokal użykowy</option>
                    <option>Hala / Magazyn</option>
                    <option>Inne</option>
                </select>
            </div>

            w

            <div class="form-group">
                <input type="text" class="form-control" placeholder="Lokalizacja" value="Polska, Poznań">
            </div>

            i płacić od

            <div class="form-group">
                <input type="text" class="form-control" id="od" style="max-width:60px;">
            </div>

            do

            <div class="form-group">
                <input type="text" class="form-control" id="do" style="max-width:60px;">
            </div>

            miesięcznie + rachunki.
        </form>
    </div>
</div>

Chcę
韦纳季奇
库皮奇
米斯卡尼
博科
多姆
洛卡尔·尤科维
哈拉/马加津
因内
W
i płacićod
做
米西切尼+拉丘基。
如何在bootstrap twitter 3中编写代码,以便在窗口较窄时显示[img 1]上的表单。
我不希望此字段调整大小并移动到其他行。

-github上的问题