Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/tensorflow/5.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
Twitter bootstrap 一块接一块的引导?_Twitter Bootstrap_Twitter Bootstrap 3 - Fatal编程技术网

Twitter bootstrap 一块接一块的引导?

Twitter bootstrap 一块接一块的引导?,twitter-bootstrap,twitter-bootstrap-3,Twitter Bootstrap,Twitter Bootstrap 3,我有这样的结构,当元素是内联的: <div class="row"> <div class="col-md-6">Block 1</div> <div class="col-md-6">Block 2</div> </div> 我想: Block 1 <!-- Margin here --> Block 2 Block 1 第2区 您可以这样尝试: <div class="row">

我有这样的结构,当元素是内联的:

<div class="row">
   <div class="col-md-6">Block 1</div>
   <div class="col-md-6">Block 2</div> 
</div>
我想:

Block 1
<!-- Margin here -->
Block 2
Block 1
第2区

您可以这样尝试:

<div class="row">
   <div class="col-md-12 form-group">Block 1</div>
   <div class="col-md-12 form-group">Block 2</div> 
</div>

第一区
第2区
<div class="row">
   <div class="col-md-12 form-group">Block 1</div>
   <div class="col-md-12 form-group">Block 2</div> 
</div>