我用this fix針對移動設備上引導模態作爲某些新的代碼鹼:引導無用空間修飾
自舉-responsive.css
.modal {
position: fixed;
top: 3%;
right: 3%;
left: 3%;
bottom:3%;
width: auto;
margin: 0;
}
.modal-body {
height: 60%;
}
bootstrap.css
.modal-body {
max-height: 350px;
padding: 15px;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
問題是我有我得到額外的空間在模態的底部。
如何刪除這個空間?
我做了一個fiddle,證明了這個問題。
嘗試用的480寬度改變瀏覽器的高度,這fiddle模態軀應該堅持在底部,但它不是,當我刪除bottom:3%
在.modal
一切正常像this或this但高度的.modal
重疊畫面的高度和其不響應
你可以發佈你的HTML /做出的jsfiddle?嘗試底部:0;在你自己的樣式表中 –
刪除.modal-body css中的padding屬性 –
剛剛創建的小提琴 – Snippet