html – Bootstrap:如何在列内对齐内容?

html – Bootstrap:如何在列内对齐内容?,第1张

概述参见英文答案 > How do you get centered content using Twitter Bootstrap?                                    22个 一个简单的用例场景是使用图像或Bootstrap列中的任何其他内容.通常这些内容需要横向居中. <div class="container"> <div class="row"> 参见英文答案 > How do you get centered content using Twitter Bootstrap?22个
一个简单的用例场景是使用图像或bootstrap列中的任何其他内容.通常这些内容需要横向居中.
<div >    <div >        <div >            <img  src="img/some-image.png" title="this image needs to be centered">        </div>        <div >            some content not important at this moment        </div>    </div></div>

在3.1.0版中,添加类文本中心将图像置于列内.但我被迫转到版本3.3.4以解决其他一些问题,这种行为(文本中心)现在已经被破坏了.
我遗留的问题是如何将图像或其他内容置于列中.
我想避免必须将类添加到包含的元素,因为这容易出错或需要另一个包含div.

解决方法 想要居中的形象?非常简单,bootstrap有两个类,.center-block和text-center.

在图像为BLOCK元素的情况下使用前者,例如,向img添加img-responsive类使img成为块元素.如果您知道如何在Web控制台中导航并查看元素的应用样式,则应该知道这一点.

不想上课?没问题,这是CSS bootstrap使用的.您可以为元素创建自定义类或编写CSS规则以匹配bootstrap类.

// In case you're dealing with a block element apply this to the element itself .center-block {   margin-left:auto;   margin-right:auto;   display:block;}// In case you're dealing with a inline element apply this to the parent .text-center {   text-align:center}
总结

以上是内存溢出为你收集整理的html – Bootstrap:如何在列内对齐内容?全部内容,希望文章能够帮你解决html – Bootstrap:如何在列内对齐内容?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1107305.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存