首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >在ipad纵向中,引导列从容器中走到很远的地方。

在ipad纵向中,引导列从容器中走到很远的地方。
EN

Stack Overflow用户
提问于 2016-10-20 16:08:30
回答 1查看 324关注 0票数 0

我试图对齐4引导列并排。在ipad的风景画上,他们一分为二。但在ipad的肖像上,第三栏的内容却大大减少了。一天中,我花了太多的时间试图让它正常工作,却没有任何运气。

有人能给我提点建议吗?

代码语言:javascript
复制
@media only screen and (min-device-width: 768px) and (max-device- width: 1024px) {
  .cv-box {
    background: rgba(255, 255, 255, .5);
    margin-bottom: 50px;
    border-radius: 5px;
    margin-right: 15px;
    margin-left: 15px;
    float: left !important;
    width: 45% !important;
  }
}
代码语言:javascript
复制
<div class="row">
  <div class="col-sm-10 col-sm-offset-1 text-center">
    <h1 class="team-lead" id="team">The Team</h1>
  </div>
  <div class="container the-team">
    <div class="col-xs-12 col-md-3  cv-box">
      <h3>SomeName</h3>

      <img src="/assets/BOS.jpg" class="portfolio-img img-responsive">
      <p class="cv">ntelligentsia mumblecore ethical yr, four dollar toast cliche hexagon waistcoat kinfolk. Enamel pin chia tumeric trust fund. Fap sriracha hot chicken, squid affogato brunch pok pok chicharrones normcore la croix typewriter offal fam pabst umami.
        Helvetica activated charcoal whatever, butcher air plant kale chips scenester before they sold out mustache kitsch authentic bespoke fashion axe meggings.</p>
    </div>

    <div class="col-xs-12 col-md-3  cv-box">
      <h3>SomeName</h3>

      <img src="/assets/BOS.jpg" class="portfolio-img img-responsive">
      <p class="cv">ntelligentsia mumblecore ethical yr, four dollar toast cliche hexagon waistcoat kinfolk. Enamel pin chia tumeric trust fund. Fap sriracha hot chicken, squid affogato brunch pok pok chicharrones normcore la croix typewriter offal fam pabst umami.
        Helvetica activated charcoal whatever, butcher air plant kale chips scenester before they sold out mustache kitsch authentic bespoke fashion axe meggings.</p>
    </div>

    <div class="col-xs-12 col-md-3  cv-box">
      <h3>SomeName</h3>

      <img src="/assets/BOS.jpg" class="portfolio-img img-responsive">
      <p class="cv">ntelligentsia mumblecore ethical yr, four dollar toast cliche hexagon waistcoat kinfolk. Enamel pin chia tumeric trust fund. Fap sriracha hot chicken, squid affogato brunch pok pok chicharrones normcore la croix typewriter offal fam pabst umami.
        Helvetica activated charcoal whatever, butcher air plant kale chips scenester before they sold out mustache kitsch authentic bespoke fashion axe meggings.</p>
    </div>

    <div class="col-xs-12 col-md-3  cv-box">
      <h3>SomeName</h3>

      <img src="/assets/BOS.jpg" class="portfolio-img img-responsive">
      <p class="cv">ntelligentsia mumblecore ethical yr, four dollar toast cliche hexagon waistcoat kinfolk. Enamel pin chia tumeric trust fund. Fap sriracha hot chicken, squid affogato brunch pok pok chicharrones normcore la croix typewriter offal fam pabst umami.
        Helvetica activated charcoal whatever, butcher air plant kale chips scenester before they sold out mustache kitsch authentic bespoke fashion axe meggings.</p>
    </div>

更新

我现在只使用col-xs-12 col-md-3,所以在较小的视图中看上去还行,但是在下面的屏幕截图中可以看到大视图的持续问题。

下面是问题的截图,正如您所看到的,其中一列被推入其他列的下方。

EN

回答 1

Stack Overflow用户

发布于 2016-10-21 06:04:01

容器应该在class="row“之前。列team应该有自己的行。

代码语言:javascript
复制
<div class="container the-team">
<div class="row">
  <div class="col-sm-10 col-sm-offset-1 text-center">
    <h1 class="team-lead" id="team">The Team</h1>
  </div>
</div>
<div class="row">
    <div class="col-xs-12 col-md-3  cv-box">
      <h3>SomeName</h3>

      <img src="/assets/BOS.jpg" class="portfolio-img img-responsive">
      <p class="cv">ntelligentsia mumblecore ethical yr, four dollar toast cliche hexagon waistcoat kinfolk. Enamel pin chia tumeric trust fund. Fap sriracha hot chicken, squid affogato brunch pok pok chicharrones normcore la croix typewriter offal fam pabst umami.
        Helvetica activated charcoal whatever, butcher air plant kale chips scenester before they sold out mustache kitsch authentic bespoke fashion axe meggings.</p>
    </div>

    <div class="col-xs-12 col-md-3  cv-box">
      <h3>SomeName</h3>

      <img src="/assets/BOS.jpg" class="portfolio-img img-responsive">
      <p class="cv">ntelligentsia mumblecore ethical yr, four dollar toast cliche hexagon waistcoat kinfolk. Enamel pin chia tumeric trust fund. Fap sriracha hot chicken, squid affogato brunch pok pok chicharrones normcore la croix typewriter offal fam pabst umami.
        Helvetica activated charcoal whatever, butcher air plant kale chips scenester before they sold out mustache kitsch authentic bespoke fashion axe meggings.</p>
    </div>

    <div class="col-xs-12 col-md-3  cv-box">
      <h3>SomeName</h3>

      <img src="/assets/BOS.jpg" class="portfolio-img img-responsive">
      <p class="cv">ntelligentsia mumblecore ethical yr, four dollar toast cliche hexagon waistcoat kinfolk. Enamel pin chia tumeric trust fund. Fap sriracha hot chicken, squid affogato brunch pok pok chicharrones normcore la croix typewriter offal fam pabst umami.
        Helvetica activated charcoal whatever, butcher air plant kale chips scenester before they sold out mustache kitsch authentic bespoke fashion axe meggings.</p>
    </div>

    <div class="col-xs-12 col-md-3  cv-box">
      <h3>SomeName</h3>

      <img src="/assets/BOS.jpg" class="portfolio-img img-responsive">
      <p class="cv">ntelligentsia mumblecore ethical yr, four dollar toast cliche hexagon waistcoat kinfolk. Enamel pin chia tumeric trust fund. Fap sriracha hot chicken, squid affogato brunch pok pok chicharrones normcore la croix typewriter offal fam pabst umami.
        Helvetica activated charcoal whatever, butcher air plant kale chips scenester before they sold out mustache kitsch authentic bespoke fashion axe meggings.</p>
    </div>
</div>

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/40159418

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档