Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/89.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 为什么我能';t在我的项目中禁用响应引导_Html_Css_Twitter Bootstrap - Fatal编程技术网

Html 为什么我能';t在我的项目中禁用响应引导

Html 为什么我能';t在我的项目中禁用响应引导,html,css,twitter-bootstrap,Html,Css,Twitter Bootstrap,我有个大问题。我在我的网站上使用BootstrapVer3.1.1,我想在这个项目中禁用bootstrap,但我不能 这是html: <div class="container"> <div class="row"> <div class="col-md-9" style="background-color: yellow;">col left</div> &l

我有个大问题。我在我的网站上使用BootstrapVer3.1.1,我想在这个项目中禁用bootstrap,但我不能

这是html:

<div class="container">
            <div class="row">
                <div class="col-md-9" style="background-color: yellow;">col left</div>
                <div class="col-md-3" style="background-color: pink;">col right</div>
            </div>
        </div>
删除标题页中的元标记

<meta name="viewport" content="width=device-width, initial-scale=1">

但是当我在firefox中测试我的网络时,chrome。。。当我调整浏览器的宽度时,元素div“container”的大小是固定的。但导航栏菜单,网格系统是响应。为什么?请帮帮我

对不起,因为我的英语不好


多谢各位

为您定制:

(取消选中该响应实用程序复选框)


  • 省略CSS文档中提到的视口
  • 使用单个宽度覆盖
    容器上的
    宽度
    ,例如
    宽度:970px!重要的确保这是在默认引导CSS之后。您可以选择避免使用
    !重要信息
    ,可通过媒体查询或某些选择器查询
  • 如果使用导航栏,请删除所有导航栏的收拢和展开行为
  • 对于网格布局,使用
    .col xs-*
    类作为中型/大型类的补充或替代。别担心,超小型设备网格可以扩展到所有分辨率

  • 您可以通过包括禁用引导的响应


    有关详细信息,请参见。

    可能重复的。您有关于“如果使用导航栏,请删除所有导航栏折叠和扩展行为”的示例吗。我不明白这件事。谢谢@dotty!我正在尝试,但当调整浏览器大小时,导航栏会做出响应。我不知道为什么:(
    <meta name="viewport" content="width=device-width, initial-scale=1">