在xs模式下的twitter bootstrap文本中心

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在xs模式下的twitter bootstrap文本中心相关的知识,希望对你有一定的参考价值。

我有html作为: -

<footer>
<div class="container">
    <div class="row">
        <div class="col-xs-12 col-sm-6 text-left">
            <p>
                &copy; 2015 example.com. All rights reserved.
            </p>
        </div>
        <div class="col-xs-12 col-sm-6 text-right">
            <p>
                <a href="#"><i class="fa fa-facebook"></i></a> 
                <a href="#"><i class="fa fa-twitter"></i></a> 
                <a href="#"><i class="fa fa-google-plus"></i></a>
            </p>
        </div>
    </div>
</div>
</footer>

从代码中可以看到列的文本分别左右对齐。但是在xs模式中我喜欢它们居中对齐。我怎么能用twitter bootstrap做到这一点?

答案

Bootstrap V4中添加了响应式文本对齐:

https://getbootstrap.com/docs/4.0/utilities/text/#text-alignment

对于左对齐,右对齐和中心对齐,可以使用与网格系统相同的视口宽度断点的响应类。

<p class="text-sm-left">Left aligned text on viewports sized SM (small) or wider.</p>
另一答案

为此,没有内置到引导程序中,但是一些简单的css可以修复它。这样的事情应该有效。虽然没有测试过

 @media (max-width: 768px) 
      .col-xs-12.text-right, .col-xs-12.text-left 
              text-align: center;
        
    
另一答案
@media (max-width: 767px) 
    footer .text-right, 
    footer .text-left 
        text-align: center;
     

我更新了@ loddn的答案,做了两处修改

  • max-widthxs屏幕在引导程序是767px(768px是sm屏幕的开始)
  • (这是一个偏好的问题)我使用footer而不是col-*,这样如果列宽改变,CSS不需要更新。
另一答案

Css部分是:

CSS:

@media (max-width: 767px) 

  // Align text to center.
  .text-xs-center 
    text-align: center;
   

并且HTML部分将是(此文本中心仅在767px宽度下工作)

HTML:

 <div class="col-xs-12 col-sm-6 text-right text-xs-center">
        <p>
            <a href="#"><i class="fa fa-facebook"></i></a> 
            <a href="#"><i class="fa fa-twitter"></i></a> 
            <a href="#"><i class="fa fa-google-plus"></i></a>
        </p>
 </div>
另一答案

HTML

<div class="text-lg-right text-center">
  center in xs and right in lg devices
</div>
另一答案

Bootstrap 4

<div class="col-md-9 col-xs-12 text-md-left text-center">md left, xs center</div>
<div class="col-md-9 col-xs-12 text-md-right text-center">md right, xs center</div>
另一答案

这被标记为bootstrap 3,但也许这会有所帮助:在Bootstrap 4.0.0(非beta):在col类中,使用

<div class="col text-center text-md-left">

“文本中心”将所有窗口大小的文本居中,然后添加“text-md-left”或“text-md-right”以将其更改为sm以上。你可以把它变成“text-sm-left”,“text-lg-left”等等。但是将它设置为中心始终首先设置它。

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<body>
<footer>
  <div class="container">
    <div class="row">
      <div class="col-xs-12 col-sm-6 text-center text-md-left">
        <p>
          &copy; 2015 example.com. All rights reserved.
        </p>
      </div>
      <div class="col-xs-12 col-sm-6 text-center text-md-right">
        <p>
          <a href="#"><i class="fa fa-facebook"></i></a>
          <a href="#"><i class="fa fa-twitter"></i></a>
          <a href="#"><i class="fa fa-google-plus"></i></a>
        </p>
      </div>
    </div>

      </div>

</footer>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
另一答案

使用bs3-upgrade库进行间距和文本对齐...

https://github.com/studija/bs3-upgrade

col-xs-text-center col-sm-text-left

col-xs-text-center col-sm-text-right

<div class="container">
    <div class="row">
        <div class="col-xs-12 col-sm-6 col-xs-text-center col-sm-text-left">
            <p>
                &copy; 2015 example.com. All rights reserved.
            </p>
        </div>
        <div class="col-xs-12 col-sm-6 col-xs-text-center col-sm-text-right">
            <p>
                <a href="#"><i class="fa fa-facebook"></i></a> 
                <a href="#"><i class="fa fa-twitter"></i></a> 
                <a href="#"><i class="fa fa-google-plus"></i></a>
            </p>
        </div>
    </div>
</div>

以上是关于在xs模式下的twitter bootstrap文本中心的主要内容,如果未能解决你的问题,请参考以下文章

使用 Twitter Bootstrap 响应式地重新排序 div?

Twitter-bootstrap 模式未在页面加载时显示(灰屏)

禁止关闭 Twitter Bootstrap 模式窗口

jQuery 在 Twitter Bootstrap 模式中显示/隐藏

移动设备上的 Twitter Bootstrap 模式

在表单提交上显示 Twitter Bootstrap 模式