• 技术文章 >web前端 >Bootstrap教程

    浅谈Bootstrap中的垂直水平居中

    青灯夜游青灯夜游2021-01-19 09:26:52转载2352
    本篇文章给大家介绍一下Bootstrap3和Bootstrap4的垂直水平居中。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

    相关教程推荐:《bootstrap教程

    Bootstrap水平居中

    // 文本:
    
    class ="text-center"
    // 图片居中:
    
    class = "center-block"
    //其他元素:
    
    //bootstrap3水平居中:利用bootstrap列偏移
    
    class = "col-md-offset-4 col-lg-offset-4col-xl-offset-4"
    // bootstrap4水平居中:
    
    class = "m-auto"

    Bootstrap垂直居中

    bootstrap3 如何让div内部垂直居中:

    Bootstrap的栅格系统使用的是float:left的浮动方式,vertical-align属性不起作用,故把内部div的float属性清除,添加display属性,如下:

    .middle {
    
       float: none;
    
       display: inline-block;
    
       vertical-align: middle;
    
    }

    Bootstrap3登录框自适应水平居中+垂直居中

    https://blog.csdn.net/shenzhen_zsw/article/details/75331515

    Bootstrap4 如何让div内部垂直居中:

    给元素定高度

    .login-center {
    
     height: 100vh;
    
    }

    应用.align-items-center可以使元素垂直居中:

    <div class="row align-items-centerjustify-content-center login-center">
     
    …
     
    </div>

    应用. justify-content-center可以使元素水平居中:

    效果:

    更多编程相关知识,请访问:编程教学!!

    以上就是浅谈Bootstrap中的垂直水平居中的详细内容,更多请关注php中文网其它相关文章!

    声明:本文转载于:csdn,如有侵犯,请联系admin@php.cn删除
    专题推荐:bootstrap居中对齐
    上一篇:浅谈bootstrap响应式图片的实现方法 下一篇:一般用bootstrap干什么用的
    大前端线上培训班

    相关文章推荐

    • bootstrap-select下拉框如何清除选中的状态?• bootstrap如何获取行数据?• bootstrap与html5的区别是什么• bootstrap-table怎么分页?两种方式介绍

    全部评论我要评论

  • 取消发布评论发送
  • 1/1

    PHP中文网