我有一個非常簡單的引導面板,但是當我在外部div內使用它時,它伸展到頂部並隱藏現有控件。bootstrap面板拉伸頂部和隱藏在MD /小型設備中的元素
當您在全屏幕中查看時,您會發現它正確顯示,但只要我調整瀏覽器大小或在移動模式下查看,面板開始向上移動並隱藏現有內容。
<div class="panel panel-info" style="margin-top: 8px!important;">
<div class="">
<button type="button"
class="close remove-cart-item update-cart-item"
data-dismiss="alert"
style="padding-right: 10px">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="panel-body">
<div class="col-sm-5 col-xs-10 nopadding">
More Description :
<input type="text"
class="form-control textArea"
maxlength="10"
size="10"
placeholder="Enter data Plate">
</div>
<div class="col-sm-5 col-xs-10 nopadding">
<select class="form-control textArea licenseStateDD" placeholder="Enter License State">
<option value="TX">TEXAS</option>
<option value="UT">UTAH</option>
</select>
</div>
代碼的完整版可以發現on this JSFiddle。
這仍然不能解決我的問題,當我調整瀏覽器的大小時,該div將與上面的控件混合。 –