我正在使用Bootstrap 3.3.5。使用Bootstrap的模型,.modal頭文件和.modal頁腳不起作用
我有一個.modal
與標題,身體和頁腳。
根據Bootstrap Model's example,我應該使用類別.modal-header
,.modal-body
和.modal-footer
爲模態的每個部分。
我使用的是推薦的類,但沒有樣式應用於使用.modal-header
和.modal-footer
註釋的div。
我甚至手動編寫了樣式,仍然沒有應用。
這裏發生了什麼?
.modal-header {
min-height: 16.43px;
padding: 15px;
border-bottom: 1px solid #E5E5E5;
}
.modal-footer {
padding: 15px;
text-align: right;
border-top: 1px solid #E5E5E5;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet" />
<div class="modal" style="display:block;">
<div class="modal-dialog">
<div class="modal-content">
<div class="model-header">
<button type="button" class="close"></button>
<h4 class="modal-title">Modal title</h4>
</div>
<div class="modal-body">
This is the body
</div>
<div class="model-footer">
<button type="button" class="btn btn-default">Close</button>
</div>
</div>
</div>
</div>
應該是有模式,而不是模型(當然小寫-)。 –
@SaehunSeanOh嗷!我的錯!我發誓我在發佈之前檢查了三次代碼!我想我應該休息一下...謝謝! –