通过Flex布局设置水平垂直居中

效果如下:

通过Flex布局设置水平垂直居中_第1张图片

实现代码:

通过给父元素设置CSS样式:

display:flex;
align-items:center;
justify-content:center;

//HTML

//css .box{ display:flex; align-items:center; justify-content:center; height:100%; background:white; } .box-item{ height:200px; width:200px; background:red; }

 

你可能感兴趣的:(通过Flex布局设置水平垂直居中)