-1

我在引导网格系统方面遇到了一些问题。

我通常在我的项目中使用流畅的布局并且没有任何问题。我正在使用非流体布局,不知何故,我的项目只跨越了大约一半的页面,不知何故没有居中。

有什么帮助吗?

链接:http ://tsa.aws.af.cm

4

2 回答 2

0
<body>
  <div class="container">
    ...
  </div>
</body>

这是为固定宽度布局给出的示例,您可以仔细检查您的代码。

于 2013-05-08T05:41:08.480 回答
0

添加一个类如下所示的divcontainer

像这样

<div class="container"> // add this line 
<div class="span12">
         <video id="video_background" preload="auto" autoplay="true" loop="loop" muted="" volume="0">  <source src="videos/splash.ogv" type="video/ogg ogv" ;="" codecs="theora, vorbis"><source src="videos/splash.mp4" type="video/mp4"> Video not supported </video>
         <h1 class="text-center">Monta Vista TSA grows careers and accelerates lives</h1><br>
         <p class="text-center">See what our <a href="#">members think</a> and <a href="join.html">join now</a></p>
        </div>
</div> // add this line
于 2013-05-08T05:33:50.533 回答