I have a container element with the "overflow-y: hidden" attribute. However, this makes the "overflow-x" property become "scroll" instead of visible. I have no way to make it overflow x-: display. Have any way to make its "overflow-x" property is "visible" while keeping "overflow-y: hidden"?
.container{
width: 50%;
height: 100px;
background-color: blue;
overflow-y: hidden;
}
.container div{
background-color: red;
width: 120%;
height: 20px;
}
<div class="container">
<div>
overflow x div
</div>
</div>