第一种方式定位1234567891011121314.box{ width: 400px; height: 400px; position:relative; border: 1px solid #0D0D0D;}.box div{ width: 100px; height: 100px; position:absolute; top: 50%; transform: translateY(-50%); background-color: palegoldenrod;} 第二种方式flex布局1234567891011121314.box{ width: 400px; height: 400px; display: flex; flex-direction: row; justify-content: space-around; align-items: center; border: 1px solid #0D0D0D;}.box div{ width: 100px; height: 100px; background-color: palegoldenrod;} 示例