twitter-bootstrap-3 – Bootstrap 3模态响应

前端之家收集整理的这篇文章主要介绍了twitter-bootstrap-3 – Bootstrap 3模态响应前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个模态,但它不会调整小屏幕(平板电脑等).有没有办法让它做出回应?无法找到关于引导文档的任何信息.谢谢

我更新我的HTML代码:(它的一个django for循环)

<div class="modal fade " id="{{ p.id }}" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" >
      <div class="modal-dialog modal-lg">
        <div class="modal-content">
          <div class="modal-header">
            <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
            <h4 class="modal-title" id="myModalLabel">Producto</h4>
          </div>
          <div class="modal-body">
            <h5>Nombre : {{ p.name}}</h5>       
          </div>
          <div class="modal-footer">
            <button type="button" class="btn btn-default" data-dismiss="modal">Cerrar</button>

          </div>

        </div>
      </div>
    </div>

我有这个css设置:

.modal-lg {
  max-width: 900px;}
@media (min-width: 768px) {
   .modal-lg {
    width: 100%;
  } 
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}

解决方法

我已经解决了相同的问题,通过添加一个媒体查询为@ screen-xs-min在较少版本的Modals.less
@media (max-width: @screen-xs-min) {
  .modal-xs { width: @modal-sm; }
}
原文链接:https://www.f2er.com/bootstrap/234064.html

猜你在找的Bootstrap相关文章