我的建议是在该 contact-image-box 内使用内部 div。这个 div 应该包含文本和内容,另一方面,.contact-image-box div 应该是一个容器。将这些 flexbox 属性赋予该容器 div,然后将白色背景颜色添加到内部 div。
它应该是这样的:
.contact-image-box {
inset: 0; // this is equivalent to the top, bottom, left and right set to 0
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
& > div {
background-color: white;
}
}