Twitter bootstrap 面板内的Twitter引导网格

Twitter bootstrap 面板内的Twitter引导网格,twitter-bootstrap,grid,panel,twitter-bootstrap-3,Twitter Bootstrap,Grid,Panel,Twitter Bootstrap 3,我正在尝试使用引导的网格系统来实现在左边有一个图像,同时能够让内容(文本和其他引导组件)填充右边的空间。我唯一的问题是,我无法将文本放到我想要的地方 文本“STUFF”表示内容。我想把内容放在右边的图像&而不是下面(框区如下所示)。我尝试使用网格系统来实现这一点,但我要么做得不正确,要么无法使用此方法 我正在使用Twitter引导版本3.0.2。下面是我的HTML代码(请原谅我的低效代码,我是用它来玩的)&我正在使用Bootstrap.css和.js文件,还有一些与我的问题无关的小编辑 其他信

我正在尝试使用引导的网格系统来实现在左边有一个图像,同时能够让内容(文本和其他引导组件)填充右边的空间。我唯一的问题是,我无法将文本放到我想要的地方

文本“STUFF”表示内容。我想把内容放在右边的图像&而不是下面(框区如下所示)。我尝试使用网格系统来实现这一点,但我要么做得不正确,要么无法使用此方法

我正在使用Twitter引导版本3.0.2。下面是我的HTML代码(请原谅我的低效代码,我是用它来玩的)&我正在使用Bootstrap.css和.js文件,还有一些与我的问题无关的小编辑

其他信息: 我使用了2个HTML页面(多么荒谬,对吧?),1个(较亮的区域)在另一个页面(主页/较暗/外部区域)内。我提供的HTML代码是内部页面的代码

另外,我想知道如何在图像和内容之间设置“水平”的

<!DOCTYPE html>
<html>
    <head>
        <title>TITLE</title>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link href="../../assets/css/bootstrap.css" rel="stylesheet">
    </head>
    <body style="background-color: #F0F0F0; padding-top: 15px">
            <div class="panel panel-default" style="margin-left: 15px; margin-right: 15px">
                <div class="panel-heading">
                    <h3 class="panel-title">Panel title</h3>
                </div>
                <div class="panel-body">
                    <div class="row">
                        <div class="col-md-2">
                            <img src="http://placehold.it/140x140" class="img-rounded" style="width: 100px; height: 100px">
                        </div>
                        <div class="col-md-10">
                            STUFF
                        </div>
                    </div>
                </div>
            </div>
        <hr>
        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
        <script src="../../assets/js/bootstrap.js"></script>
    </body>
</html>

标题
小组标题
东西

试试这个

 <div class="panel panel-default" style="margin-left: 15px; margin-right: 15px">
   <div class="panel-heading">
     <h3 class="panel-title">Panel title</h3>
   </div>
   <div class="panel-body">
     <div class="row">
       <div class="col-md-2">
         <img src="http://placehold.it/140x140" class="img-rounded" style="width: 100px; height: 100px">
       </div>
       <div class="col-md-10">
         STUFF
       </div>
     </div>
   </div>
</div>
<hr>
 <div class="panel panel-default" style="margin-left: 15px; margin-right: 15px">
   <div class="panel-heading">
     <h3 class="panel-title">Panel title</h3>
   </div>
   <div class="panel-body">
     <div class="row">
       <div class="col-xs-2">
         <img src="http://placehold.it/140x140" class="img-rounded" style="width: 100px; height: 100px">
       </div>
       <div class="col-xs-10">
         STUFF
       </div>
     </div>
   </div>
</div>

小组标题
东西

小组标题 东西

你能进一步解释一下你想要完成什么吗?面板内的网格似乎按预期工作:@Skelly感谢bootply链接。我已经知道什么是有效的。在第一个面板中有一个class=“col-md-2”。在第二个示例中,它更改为div class=“col-xs-2”。第二个小组成功了。如果你在不知情的情况下解决了我的问题,我无需进一步解释!谢谢