针对可变内容动态调整 Twitter Bootstrap 模态的大小
处理模态中的各种内容类型时,例如视频、图像或文本,确保模式的大小根据内容动态调整可能具有挑战性。大多数在线解决方案仅适用于使用单个参数调整大小。
可用于处理这种情况的 HTML 代码,结合 Ajax 进行内容检索,如下所示:
<code class="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></code>
在尝试了各种解决方案后,发现以下代码可以有效地根据其内容动态调整模态框的大小:
.modal-dialog { position: relative; display: table; /* This is crucial */ overflow-y: auto; overflow-x: auto; width: auto; min-width: 300px; }
此代码确保模态框的对话框相对定位,显示为表格,具有自动垂直和水平滚动功能,并根据模式内的内容自动调整其宽度。设置最小宽度 300px 是为了防止模态框变得太窄。
以上是如何动态调整 Twitter Bootstrap 模态的大小以适应可变内容?的详细内容。更多信息请关注PHP中文网其他相关文章!