30/11/2023
<div class="battle-wrapper">
<div class="box">
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
</div>
</div>
<style>
.battle-wrapper {
max-width: 400px;
height: 300px;
background: #e0da8e;
}
.box {
width: 270px;
height: 120px;
background: #898329;
position: absolute;
inset: 50%;
translate: -50% -50%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 30px;
box-sizing: border-box;
}
.item {
width: 30px;
height: 60px;
background: #e0da8e;
}
</style>