display:-webkit-flex;
align-items: center;
justify-content:center;
不需要相对定位,比如<div><img src="" alt=""/></div>
只需要给div指定样式
div{
display:flex;
align-items: center;
justify-content:center;
}
就能实现图片在div内部居中了
怎么设置呢?需要对相对的盒子模型做什么设置。相对定位吗?
felxbox 可以相对于某个元素内的盒子模型