簡介:
調整Bootstrap 模態大小以適應不同的內容尺寸可能是常見的操作Web 開發中的挑戰。當模態中的內容(例如嵌入媒體或動態文字)具有不同的高度和寬度時,就會出現此挑戰。
內容:
為了解決此問題,我們提出了一個解決方案允許您根據模態框包含的內容的大小動態調整模態框的大小。這包括對各種類型內容的適應性,包括影片、圖像和文字。
HTML 結構:
以下是模式使用的HTML 程式碼:
<div id="modal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <h3 id="ModalLabel"></h3> </div> <div class="modal-body"> </div> </div>
CSS 解:
.modal-dialog{ position: relative; display: table; /* This is important */ overflow-y: auto; overflow-x: auto; width: auto; min-width: 300px; }
說明:
以上是如何動態調整 Twitter Bootstrap 模態大小以適應內容?的詳細內容。更多資訊請關注PHP中文網其他相關文章!