CSS(水平垂直居中)
背景图片水平垂直居中:
background:url(logo.jpg) no-repeat center center;
background-attachment:fixed;
盒子中文本水平垂直居中:
text-align:center;
line-height:盒子高度;
一般通用型:
position:absolute;
top:50%;
left:50%;
transform:translation(-50%,-50%);
盒模型:
display:-前缀-box;
-前缀-box-pack:center;
-前缀-box-align:center;
伸缩模型:
display:flex;
align-items:center;
justify-content:center;