如何在bootstrap 3 form-horizo​​ntal模式下使用select2显示标签?

Dmi*_*i M 3 twitter-bootstrap

请看这个jfiddle - http://jsfiddle.net/3wZ4y/2/

    <div class="form-group">
    <label class="control-label" for="select02">Select 02</label>
        <div class="col-xs-4">
        <input type="hidden" id="select02" style="width: 100%" />
        </div>
    </div>
Run Code Online (Sandbox Code Playgroud)

出于某种原因,我无法强制Label出现在select2下拉控件的左侧.相反它出现在右边!

谢谢.

Mis*_*siu 5

试试这个:http://jsfiddle.net/fc1qevem/1/

<div class="form-group">
    <label for="skill" class="col-sm-2 control-label">Skill</label>
    <div class="col-sm-10">
        <input id="select02" style="width: 100%"></input>
    </div>
</div>
Run Code Online (Sandbox Code Playgroud)