如何竖直居中一个元素_WEB前端开发

如何竖直居中一个元素_WEB前端开发,第1张

JS中splice()方法是什么?_WEB前端开发

splice()方法是从数组中添加或删除项目,然后返回被删除的项目,该方法会改变原始数组,语法为【arrayObject.splice(index,howmany,item1,.....,itemX)】。


竖直居中一个元素的方法:1、通过“line-height”属性对单行内联元素实现垂直居中;2、利用flex布局实现垂直居中;3、使用“absolute+负margin”实现块级元素垂直居中。


如何竖直居中一个元素_WEB前端开发,第2张

垂直居中

1.单行内联元素垂直居中

<div id="box">
     <span>单行内联元素垂直居中。


</span>。


</div> <style> #box { height: 120px; line-height: 120px; border: 2px dashed #f69c55; } </style>

2.多行内联元素垂直居中

①利用flex布局(flex)

利用flex布局实现垂直居中,其中flex-direction: column定义主轴方向为纵向。


这种方式在较老的浏览器存在兼容性问题。


<div class="parent">
    <p>Dance like nobody is watching, code like everybody is.    
    Dance like nobody is watching, code like everybody is.    
    Dance like nobody is watching, code like everybody is.</p>
</div>
<style>
    .parent { 
        height: 140px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border: 2px dashed #f69c55;
    }
</style>

如何竖直居中一个元素_WEB前端开发,第3张

②利用表布局(table)

利用表布局的vertical-align: middle可以实现子元素的垂直居中

vue中的nexttick原理_WEB前端开发

vue中的nexttick原理实现是基于Vue实现响应式并不是数据发生变化之后DOM立即变化,而是按一定的策略进行DOM的更新。


<div class="parent">
    <p class="child">The more technology you learn, the more you realize how little you know.
    The more technology you learn, the more you realize how little you know.
    The more technology you learn, the more you realize how little you know.</p>
</div>
 <style>
    .parent {
        display: table;
        height: 140px;
        border: 2px dashed #f69c55;
    }
    .child {
        display: table-cell;
        vertical-align: middle;
    }
</style>

3 块级元素垂直居中

①使用absolute+负margin(已知高度宽度)

通过绝对定位元素距离顶部50%,并设置margin-top向上偏移元素高度的一半,就可以实现了。


<div class="parent">
    <div class="child">固定高度的块级元素垂直居中。


</div> </div> .parent { position: relative; } .child { position: absolute; top: 50%; height: 100px; margin-top: -50px; }

②使用absolute+transform

当垂直居中的元素的高度和宽度未知时,可以借助CSS3中的transform属性向Y轴反向偏移50%的方法实现垂直居中。


但是部分浏览器存在兼容性的问题。


<div class="parent">
    <div class="child">未知高度的块级元素垂直居中。


</div> </div> .parent { position: relative; } .child { position: absolute; top: 50%; transform: translateY(-50%); }

③使用flex+align-items

通过设置flex布局中的属性align-items,使子元素垂直居中。


<div class="parent">
    <div class="child">未知高度的块级元素垂直居中。


</div> </div> .parent { display:flex; align-items:center; }

④使用table-cell+vertical-align

通过将父元素转化为一个表格单元格显示(类似 <td> 和 <th>),再通过设置 vertical-align属性,使表格单元格内容垂直居中。


<div class="parent">
  <div class="child">Demo</div>
</div>
<style>
  .parent {
    display: table-cell;
    vertical-align: middle;
  }
</style>

推荐学习:《前端视频

以上就是如何竖直居中一个元素的详细内容,更多请关注ki4网其它相关文章!

手把手教你如何在HTML中引入外部JS文件_WEB前端开发

在学习前端的时候,小伙伴们一定对于在HTML中如何引入外部JS文件感到困惑,下面小编教你HTML引入外部JS文件的方法。


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

原文地址: http://www.outofmemory.cn/zaji/561301.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2020-07-02
下一篇 2020-07-02

发表评论

登录后才能评论

评论列表(0条)

保存