0

嗨,我对 twitter bootstrap 很陌生。我已经安装了 grails 插件,我的.gsp文件如下所示:

<html>
   <head>
      <meta name="layout" content="main"/>
      <r:require modules="bootstrap"/>
   </head>   
<body>
    <div class="alert">
        <button type="button" class="close" data-dismiss="alert">×</button>
         <h4>Warning!</h4>
         Text goes here
    </div>
</body>   
</html>

引导程序按预期工作。但是我的整个页面向左移动。看起来像 :

在此处输入图像描述

不知道我在哪里犯错。

提前致谢。

4

1 回答 1

0

您需要添加名为container.

<body>
<div class="container">
<div class="alert">
    <button type="button" class="close" data-dismiss="alert">×</button>
     <h4>Warning!</h4>
     Text goes here
</div>
</div>
</body>

像这样......并检查。希望这对你有帮助。

EX的链接

于 2012-11-09T07:03:19.260 回答