HTML and CSS
<div class="main-container">
<div class="left-panel">
<div class="panel-style">My Panel</div>
</div>
<div class="right-panel"></div>
<div class="under-right-panel"></div>
</div>
Query:
What is the best way to add another div that should be positioned below .right-panel
? This new div will have the class of .under-right-panel
with styling in the CSS as follows:
.under-right-panel {
width: 320px;
height: auto;
overflow: auto;
background-color: gold;
}