我会尽力尽可能清楚地解释我的问题。在这里,我试图使“vs”位于中心线,左右元素在其旁边流动。
我尝试使用弹性盒,但它集中了整个事情,正如您在上面的照片中看到的那样,但不是我想要实现的目标。
谢谢!
这是我尝试过的一个片段:
<div class='flex page-container'>
<div class='flex team-name'>
THIS TEAM NAME IS LONG
<img class='team-logo' src={TEAM_1_LOGO} />
</div>
<div class='vs'>VS</div>
<div class='flex team-name'>
<img class='team-logo' src={TEAM_2_LOGO} />
SHORT NAME
</div>
</div>
.flex {
display: flex;
}
.page-container {
align-items: center;
justify-content: center;
margin: 1.5rem;
max-height: 9rem;
overflow: hidden;
.team-name {
align-items: center;
}
.team-logo {
height: 6rem;
max-width: 7rem;
margin: 0 5rem;
overflow: hidden;
}
.vs {
align-self: center;
}
}
qq_遁去的一_1
HUH函数
相关分类