美文网首页
让弹框在屏幕垂直居中

让弹框在屏幕垂直居中

作者: 高阳刘 | 来源:发表于2019-07-11 14:40 被阅读0次
    html
    <div class="zhehzao">
      <div class="tankaung">在屏幕水平垂直居中</div>
    <div>
    css
    .zhezhao{
        width: 100%;
        height: 100%;
        position: fixed;
        z-index: 10000;
        top:0;
        background: rgba(0,0,0,.5);
        display: flex;
        align-items: center;
    }
    .tankaung{
        width: 100px;
        height: 100px;
        margin: 0 auto
    }
    

    相关文章

      网友评论

          本文标题:让弹框在屏幕垂直居中

          本文链接:https://www.haomeiwen.com/subject/qyfdkctx.html