块元素 居中

element.style {
    width: 128px;
    height: 128px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -64px;
    margin-left: -64px;
}

 未知子元素宽高

//父元素
element.style {
    display: flex;
}
//子元素
element.style {
    margin: auto;
}

<li style=" 33.3%;" data_url="Navig/MatterInfos" data_id="18"><div style="background-color: #F874A4;height: 400px;display: flex;">
<div style="margin: auto;">
<img src="/uploadFiles/Image_ico2019-10-1420191014150744429.png" style="height: 80px;margin: auto;"><span>xxx</span>
</div>
</div>
</li>

出处 :https://www.cnblogs.com/Youngly/p/6796922.html

原文地址:https://www.cnblogs.com/enych/p/11671168.html