美文网首页
前端常用的CSS代码

前端常用的CSS代码

作者: Seven_Star | 来源:发表于2020-01-17 13:37 被阅读0次

1、垂直居中对齐

.vc{
    position:absolute;
    top:50%;
    left:50%;
    transform:(-50%,-50%);
    }
.vc{
    position:absolute;
    top:50%;
    left:50%;
    width:100px;
    heigth:100px;
    margin:-50px 0 -50px:
   }

2、全屏显示

html,
body{
    position:fixed;
    width:100%;
    heigth:100%;
    }
div{
    height:100%;
    }

相关文章

网友评论

      本文标题:前端常用的CSS代码

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