我使用bootsrap 3這樣影響其他大小的填充添加額外的小(XS)柱:如何唯一沒有bootstrap3
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-6">
<label class="control-label" for="destination">Destination</label>
<input type="text" name="destination" class="form-control" id="destination">
</div>
<div class="col-xs-12 col-sm-6 col-md-6">
<label for="anotherInput">Another Label</label>
<input type="text" name="anotherInput" class="form-control">
</div>
</div>
所有列設置是否正確,舉止得體無論屏幕尺寸。問題是,當屏幕是xs(特別小)時,目標標籤和另一個標籤之間沒有填充(看起來不太好)。如何在不影響其他屏幕尺寸的填充的情況下爲尺寸xs(特別小)添加額外填充?