为什么这个bootstrap 4代码在小屏幕上每行不显示两个图像?

时间:2018-01-20 15:54:24

标签: html bootstrap-4

它在大屏幕上显示三个图像,这是我想要的,但它只在一个小窗口上每行显示一个图像,它应显示2个图像。

 <div class="container">
  <h2>Pictures of Coffee</h2>
  <div class="row">
    <div class="col-lg-4 col-xs-6 thumbnail"><img src="https://d2lm6fxwu08ot6.cloudfront.net/img-thumbs/960w/04LDEYRW59.jpg" alt=""></div>
    <div class="col-lg-4 col-xs-6 thumbnail"><img  src="https://d2lm6fxwu08ot6.cloudfront.net/img-thumbs/960w/90V03Q5Y60.jpg" alt=""></div>
    <div class="col-lg-4 col-xs-6 thumbnail"><img  src="https://d2lm6fxwu08ot6.cloudfront.net/img-thumbs/960w/O83SF2RB6D.jpg" alt=""></div>
    <div class="col-lg-4 col-xs-6 thumbnail"><img  src="https://d2lm6fxwu08ot6.cloudfront.net/img-thumbs/960w/5JVPSVP7EI.jpg" alt=""></div>
    <div class="col-lg-4 col-xs-6 thumbnail"><img  src="https://d2lm6fxwu08ot6.cloudfront.net/img-thumbs/960w/C5Y10KIIHA.jpg" alt=""></div>
    <div class="col-lg-4 col-xs-6 thumbnail"><img  src="https://d2lm6fxwu08ot6.cloudfront.net/img-thumbs/960w/YSSFRY5B25.jpg" alt=""></div>

  </div>

我认为col-xs-6会分成两部分,因为6是12的一半?

由于

2 个答案:

答案 0 :(得分:5)

  

我认为col-xs-6会分成两部分,因为6是12的一半?

bootstrap 4中没有*-xs,只有col-6没问题。

检查BS4网格选项here

enter image description here

答案 1 :(得分:1)

那是因为col-xs-*类不再存在于Bootstrap 4中。

现在只有col-*的屏幕尺寸最小。