2017-03-16 9 views
0

ページのセクションには、イメージとワードが2セットあり、それぞれの行はlgとmdモードになっています。ブートストラップカラムを私が望むように動作させることができません

ので、それはこのような何かを行く必要があります...
(IMG)(言葉...)(IMG)(言葉...)
(IMG)(言葉...)(IMG)(言葉...)

<div class="container rowSpacing"> 
      <h1 class="text-center">We Capture All Memories...</h1> 
      <div class="row"> 

       <div class="col-lg-3 col-md-3 col-sm-6 col-xs-6"> 
        <img src="images/NewLogo.png" class="img-responsive" alt="..."> 
       </div> 

       <div class="col-lg-3 col-md-3 col-sm-6 col-xs-6"> 
        <h2>Your loved ones...</h2> 
       </div> 

       <div class="clearfix"></div> 

       <div class="col-lg-3 col-md-3 col-sm-6 col-xs-6"> 
        <img src="images/NewLogo.png" class="img-responsive" alt="..."> 
       </div> 

       <div class="col-lg-3 col-md-3 col-sm-6 col-xs-6"> 
        <h2>Your special day...</h2> 
       </div> 

       <div class="clearfix"></div> 

       <div class="col-lg-3 col-md-3 col-sm-6 col-xs-6"> 
        <img src="images/NewLogo.png" class="img-responsive" alt="..."> 
       </div> 

       <div class="col-lg-3 col-md-3 col-sm-6 col-xs-6"> 
        <h2>Your last moments...</h2> 
       </div> 

       <div class="clearfix"></div> 

       <div class="col-lg-3 col-md-3 col-sm-6 col-xs-6"> 
        <img src="images/NewLogo.png" class="img-responsive" alt="..."> 
       </div> 

       <div class="col-lg-3 col-md-3 col-sm-6 col-xs-6"> 
        <h2>Your beautiful moments...</h2> 
       </div> 
      </div> 
     </div> 
+0

?多分私は最終目標/問題を誤解しています。 http://codepen.io/anon/pen/LWzdax –

+0

みんなありがとうございます!ゆっくりとしかし確実にこのことを学びます。 – Caarn

答えて

1

<div class="clearfix"></div> 

+0

Davidありがとう!時々私はそれがシンプルな何かのときにばかげて感じる – Caarn

+0

心配しないで、私はCSSを扱っている壁に頭を打つのに多くの時間を費やしました。時々非常に混乱することがあります。これがあなたの解決策だったら、答えを正解とマークしてください。 –

+0

それはまだ私のために働いていなかった – Caarn

0
<div class="container rowSpacing"> 
      <h1 class="text-center">We Capture All Memories...</h1> 



      <div class="row"> 

       <div class="col-lg-3 col-md-3 col-sm-6 col-xs-6"> 
        <img src="images/NewLogo.png" class="img-responsive" alt="..."> 
       </div> 

       <div class="col-lg-3 col-md-3 col-sm-6 col-xs-6"> 
        <h2>Your loved ones...</h2> 
       </div> 



       <div class="col-lg-3 col-md-3 col-sm-6 col-xs-6"> 
        <img src="images/NewLogo.png" class="img-responsive" alt="..."> 
       </div> 

       <div class="col-lg-3 col-md-3 col-sm-6 col-xs-6"> 
        <h2>Your special day...</h2> 
       </div> 

    </div> 
    <div class="row"> 

       <div class="col-lg-3 col-md-3 col-sm-6 col-xs-6"> 
        <img src="images/NewLogo.png" class="img-responsive" alt="..."> 
       </div> 

       <div class="col-lg-3 col-md-3 col-sm-6 col-xs-6"> 
        <h2>Your last moments...</h2> 
       </div> 



       <div class="col-lg-3 col-md-3 col-sm-6 col-xs-6"> 
        <img src="images/NewLogo.png" class="img-responsive" alt="..."> 
       </div> 

       <div class="col-lg-3 col-md-3 col-sm-6 col-xs-6"> 
        <h2>Your beautiful moments...</h2> 
       </div> 

    </div> 

      </div> 
セットの高さにあなたの列のそれぞれの設定を削除してください

sample code

+0

これは私のために働いていなかった – Caarn

0
あなただけ秒後の画像+テキストの第六組の後に clearfix DIVを削除する必要があり

それは私に次のようになります

http://codepen.io/anon/pen/aJLYeZ

+0

私はあなたと同じ結果を得ていない。それはまだすべてが混乱しているように見えます。 – Caarn

関連する問題