简体   繁体   English

引导列中字体大小的不同显示

[英]Different display of font size in bootstrap cols

I have a portfolio page. 我有一个投资组合页面。 If portfolio image is present, the row should be devided into two parts. 如果存在投资组合图片,则该行应分为两部分。 If not - portfolio description in one line. 如果不是-一行中描述投资组合。 There are three such rows on my page. 我的页面上有三行这样的行。 Some of them can be with image and some not. 其中一些可以带有图像,而有些则不可以。 At the large screen all is good, but at the mobile or ipad the font size of div's without image ( col-*-12 ) is much more bigger than in col-*-6 . 在大屏幕上,一切都很好,但是在手机或ipad上,不带图像的div的字体大小( col-*-12 )比col-*-6大得多。

 <div class="row">
  <div class="col-xs-1 col-sm-1 col-md-1 col-lg-1 ">
   </div>
   <div class="col-xs-10 col-sm-10 col-md-10 col-lg-10">        
   <% if @portfolio.first_picture.present? %>
          <div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
            <div class="portfolio-description">
             <h2 class="row-header"> Project statement</h2>
             <h4 class="p-description"><%= @portfolio.project_statement%></h4>
            </div>
          </div>
          <div class="col-xs-12 col-sm-6 col-md-6 col-lg-6 portfolio-pic">
            <%= image_tag(@portfolio.first_picture, class: 'portfolio-picture') %>
          </div>
      <% else %>
          <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 outer-desc">
            <div class="portfolio-description">
             <h2 class="row-header"> Project statement</h2>
             <h4 class="p-description"><%= @portfolio.project_statement %></h4>
            </div>
          </div>
      <% end %>
    </div>
@media (min-width: 768px) and (max-width: 991px) {
  .row-header {
     font-size: 1.8em !important;
  }
  .p-description {
     font-size: 1.3em !important;
  }
}

How can I make all this div's to look with the same font size? 如何使所有div都具有相同的字体大小? (They have the same size, but look differently) (它们具有相同的大小,但外观不同)

我将此添加到页面标题中,效果很好。

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0" charset="utf-8">

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM