JSFiddle - React, Tailwind, and code Playground
HTML
<div class="content">
<div class="phone">
<div class="panel">
<div class="width200px">А меня не видно, потому что у моих предков стоит overflow: hidden;</div>
</div>
</div>
</div>
CSS
.phone{
width: 390px;
height: 800px;
margin: auto;
overflow: hidden;
background: lightBlue;
}
.panel{
width: 300px;
height: 530px;
margin-top: 100px;
background: lightGray;
}
.width200px {
width: 200px;
height: 50px;
background: red;
margin-left: -100px;
}