Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/39.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html 我的引导模式显示良好,但是背景不';不褪色_Html_Css_Twitter Bootstrap - Fatal编程技术网

Html 我的引导模式显示良好,但是背景不';不褪色

Html 我的引导模式显示良好,但是背景不';不褪色,html,css,twitter-bootstrap,Html,Css,Twitter Bootstrap,任何想法,为什么我的背景不褪色时,这个模式出现 <div id="myModal" class="modal fade" style="" > <div class="modal-dialog" style="position: relative; top: 137px;width:1000px;height:350px;"> <div class="modal-content"> <div class="modal-heade

任何想法,为什么我的背景不褪色时,这个模式出现

<div id="myModal" class="modal fade" style="" >
  <div class="modal-dialog" style="position: relative;  top: 137px;width:1000px;height:350px;">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
        <h4 class="modal-title">Modal title</h4>
      </div>
<div class="modal-body">
                    <div>
                        <table id="foobar" class="table table-condensed table-striped table-bordered small">
                            <thead>
                                <th style="width:100px;">Host ID</th>
                                <th style="width:100px;">col 2</th>
                                <th style="width:100px;">col 3</th>
                                <th>col 4</th>
                                <th>col 5</th>
                                <th>col 6</th>
                                <th>col 7</th>
                                <th>col 8</th>
                                <th>col 9</th>
                            </thead>
                            <tbody></tbody>
                        </table>
                    </div>
                </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
      </div>
    </div><!-- /.modal-content -->
  </div><!-- /.modal-dialog -->
</div><!-- /.modal -->

&时代;
情态标题
主机ID
第2列
第3列
第4列
第5列
第6栏
第7栏
第8栏
第9栏
接近

您的模型在这个 尝试最后放置CSS引导链接。。。在任何自定义CSS链接下方。
要查看它是否是自定义CSS文件,就需要为您创建此问题

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">


Bootstrap 3.3.1在CSS中有一个错误。3.3.2修复了此问题。

我假设您没有css。modal-background.in{filter:alpha(不透明度=50);不透明度:.5;}我加载了标准引导css。否则模式将无法正确显示。在所有浏览器上还是仅在一个特定浏览器上?我对旧版本的IE有一些奇怪的结果。所有浏览器…似乎都与我的代码有关。你的标记验证。哪个版本的Bootstrap?谢谢@AngularJR,3.3.1中有一个bug导致了我的问题。很好,你已经解决了。