为啥添加css代码后模态窗口会隐藏? (引导程序)

Posted

技术标签:

【中文标题】为啥添加css代码后模态窗口会隐藏? (引导程序)【英文标题】:Why does modal window become hidden after adding css code? (Bootstrap)为什么添加css代码后模态窗口会隐藏? (引导程序) 【发布时间】:2014-12-26 19:08:52 【问题描述】:

我已经创建了模态窗口。 您可以看到它在这里运行良好。 http://www.bootply.com/R3JfdhIPwu

现在我需要将页面分为两部分 - 左右两部分,其中右侧将被修复。

 .right-main 
 position: fixed; 
 

一旦我将这一行添加到 css 模态窗口就被隐藏了:http://www.bootply.com/aYhMZ3fLlM

有没有人对它的解决方案有想法,如何让它可见?

【问题讨论】:

【参考方案1】:

只需将您的模态标记移出.right-main。模态定位通常独立于 DOM 结构。我建议将其移至 DOM 的页脚,因为它不需要立即呈现。还要确保它没有嵌套在任何可能继承其样式的元素中(在本例中为 .right-main)。

示例:http://www.bootply.com/QfzMfbTahn

<div class="right-main">
  <a class="clickable" style=" text-decoration: none; font-size:100px; border-bottom:2px dashed;" data-toggle="modal" data-target="#basicModal">Test</a>
</div>

<div class="modal fade" id="basicModal" tabindex="-1" role="dialog" aria-labelledby="basicModal" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
        <h4 class="modal-title" id="myModalLabel">Basic Modal</h4>
      </div>
      <div class="modal-body">
        <h3>Modal Body</h3>
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Save changes</button>
      </div>
    </div>
  </div>
</div>

【讨论】:

As mentioned in the docs:“模态标记放置:始终尝试将模态的 html 代码放置在文档中的***位置,以避免其他组件影响模态的外观和/或功能。”

以上是关于为啥添加css代码后模态窗口会隐藏? (引导程序)的主要内容,如果未能解决你的问题,请参考以下文章

无法更改 css 模态引导程序。引导程序中的模态淡入淡出自动添加填充左 15px

为啥我的模态没有显示?引导程序 4 [关闭]

当单击带有验证的确定按钮时,引导 vue 模式不隐藏

Laravel 应用程序中的引导模式窗口未显示

Coffeescript不在带有引导程序的rails中的模态窗口中工作

iphone - 将子视图添加到窗口后无法推送模态视图?