Is there a way to get a div in the first bootstrap column to overflow the x-axis and have its content display above the second column to the right?
<div class="row h-100">
<div class="col-3 bg-info">
<div class="LEFT">Content to be viewed</div>
</div>
<div class="col-9 bg-danger">Content that can be the shadow.</div>
</div>
div.row{
overflow-x: auto;
}
div.col-3{
overflow-x: visible;
z-index:10;
}
div.popo{
background-color: yellow;
width:600px;
}
My goal is to have the LEFT div visible over the second column (col-9). Is this achievable?