2017-10-09 15 views
0

次のコードスニペットを見つけてください。ここではcol-md-3クラスが機能していません。私はメディアのクエリを使用して行われる小さな、中規模、および大画面のための異なるスタイルを持っています。しかし、問題はcol-md-3のためだけに発生しています。どんなアイデアも参考になるでしょう。ブートストラップのメディアクエリでブートストラップcol-md-3クラスが動作していません

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" /> 
 
<div class="container-fluid"> 
 
    <div class="row row1"> 
 
    <div class="col-xs-12 col-sm-12 col-lg-2 col-md-3 col-xl-2 col xyz"> 
 
     <p class="spaceno textabovein3">Book Your Package</p> 
 
     <div class="img1 imga "> 
 
     <div class="overlay"> 
 
      <div class="textonimg">Select a date and a game and tell us your group numbers</div> 
 
     </div> 
 
     </div> 
 
    </div> 
 
    <div class="col-xs-12 col-sm-12 col-lg-2 col-md-3 col-xl-2 col xyz"> 
 
     <p class="spaceno textabovein3">We will do the Rest</p> 
 
     <div class="img2 imga "> 
 
     <div class="overlay"> 
 
      <div class="textonimg">We will organise premium seats, Aussie Rules 101 and direction booklet and home team merchandise</div> 
 
     </div> 
 
     </div> 
 
    </div> 
 
    <div class="col-xs-12 col-sm-12 col-lg-2 col-md-3 col-xl-2 col xyz"> 
 
     <p class="spaceno textabovein3">Receive the Box</p> 
 
     <div class="img3 imga "> 
 
     <div class="overlay"> 
 
      <div class="textonimg">Your package will be delivered to your hotel or home or you can pick it up at the stadium.</div> 
 
     </div> 
 
     </div> 
 
    </div> 
 
    <div class="col-xs-12 col-sm-12 col-lg-2 col-md-3 col-xl-2 col xyz"> 
 
     <p class="spaceno textabovein3">Get to the Game!</p> 
 
     <div class="img4 imga "> 
 
     <div class="overlay"> 
 
      <div class="textonimg">Read your new AFL rules guide and local tips booklet, put on your scarf and proceed to enjoy the game!</div> 
 
     </div> 
 
     </div> 
 
    </div> 
 
    </div> 
 
</div> 
 

 
</div>

+0

まさにあなたは* * "COL-MD-3が動作していない" とはどういう意味しますか? – Jonjie

+0

4つの画像を横に並びたい。私はこれを小さな(私は小さな画面用に画像を垂直に積み重ねた)小さな画面と大きな画面仕様で見ることができます。しかし、中画面の場合は、行ではなく縦の列に画像が表示されます。 – Nightshade

+0

私のために働く?画面を縮小すると、両方のブレークポイントをはっきりと見ることができます。中程度の大きさにしたい画面サイズを認識すると、ブレークポイントを調整したいことがありますか? – SourceOverflow

答えて

0

、メディアデバイスの幅は最小992pxに設定されています。小さなデバイスにページを表示するには、col-sm- *クラスを使用できます。

https://getbootstrap.com/docs/3.3/css/#grid

+0

ありがとう、これは私が間違っていたところです。 – Nightshade

関連する問題