22/09/2023
<div class="battle-wrapper">
<div class="black"></div>
</div>
<style>
.battle-wrapper {
display: flex;
justify-content: center;
align-items: center;
margin: 0;
max-width: 400px;
height: 300px;
overflow: hidden;
}
.black {
position: relative;
display: flex;
width: 100%;
height: 60px;
background: #000000;
transform: translateY(-50%);
}
.black::after {
content: "";
position: absolute;
width: 60px;
height: 210px;
background: #000000;
display: block;
left: 50%;
transform: translateX(-50%);
}
</style>