利用css样式解决网页比例变小后,div内容不能左右上下居中对齐问题。
1、图片背景左右居中
background-size: cover; background-position: center; background-repeat: no-repeat;
2、图片左右居中
flex-direction: column;
justify-content: center;
align-items: center;
max-width: 100%;
margin: 0 auto;
box-sizing: border-box;