我對模態有問題,它顯示黑色背景而不是透明。 這可能是一個與CSS有關的問題。 注:在類.fade 0.7,但沒有造成任何影響如何創建具有透明背景的bootstrap模態
<!-- Modal -->
<div class="modal fade" id="myModal" style="position:fixed; top:0px; left:800px;width:600px; background:none; " role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Adding Wall</h4>
</div>
<div class="modal-body">
<label>Wall Id: </label><input type="text" id="wallNametxt"/><br>
<label>Wall Name:</label><input type="text" id="wallNametxt1"/>
</div>
<div class="modal-footer">
<input type="button" id="btn" value="Add!" name="save" class="btn btn-default"/>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div><!--End of Modal-->
更新!!:我改變不透明度 它工作完美。但是模式被放置在與頁面高度相同的玻璃盒中。 我可以限制高度,寬度屬性,但我更願意知道原因。 Click to see output
它工作正常,什麼是您的瀏覽器? – GmaSa
提供正確的代碼,如果可能的話創建工作片段。 –
MS Edge,Google Chrome –