我遇到了bootstrap版本2的问题,我无法真正修复网格。它仍然在不同的屏幕尺寸上疯狂。我已将所有html元素包装在一个容器中,如下所示:
<header>
<div class="container">
<div class="row">
<div class="span5">
<img src="http://www.placehold.it/90x90" >
<h1 >
Header
</h1>
</div>
<div class="span4 offset3 text-right">
<h3>City</h3>
<p>+7 (343) 999999999</p>
</div>
</div>
</div>
</header>
<section class="container" id="anchors">
<div class="row">
<div class="span3 text-center">
<img src="http://www.placehold.it/150x150">
<a class="anchor">Anchor</a>
</div>
<div class="span3 text-center">
<img src="http://www.placehold.it/150x150">
<a class="anchor">Anchor</a>
</div>
<div class="span3 text-center">
<img src="http://www.placehold.it/150x150">
<a class="anchor">Anchor</a>
</div>
<div class="span3 text-center">
<img src="http://www.placehold.it/150x150">
<a class="anchor">Anchor</a>
</div>
</div>
</section>
他们仍然没有固定。那么,我如何使它无响应?将不胜感激任何帮助。
答案 0 :(得分:2)
解压缩您的css文件并删除“MEDIA QUERIES”,如:
// Landscape phones and down
@media (max-width: 480px) { ... }
// Landscape phone to portrait tablet
@media (max-width: 767px) { ... }
// Portrait tablet to landscape and desktop
@media (min-width: 768px) and (max-width: 979px) { ... }
// Large desktop
@media (min-width: 1200px) { ... }
答案 1 :(得分:1)
根据你的评论,我知道你有一个单独的css文件。
您找到以下内容并将其完全删除:
@media screen and
(min-width: X px) and
(max-width: X px)
@media screen and
(min-device-width: X px) and
(max-device-width: X px)
您可以使用在线工具转换最小文件以使其可编辑。
答案 2 :(得分:0)
如果你有这两行,你可以从页面中删除这两行。
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/css/bootstrap-responsive.css" rel="stylesheet">