前端常用的CSS代码

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代码)