I'm having trouble setting up an HTML element similar to the one shown in the image. The buttons are working fine, but I am struggling to position two divs below them correctly. I have experimented with various combinations of floats, positions, and displays, but so far, nothing has worked. Unfortunately, I am restricted from modifying the navbar's CSS.https://i.sstatic.net/QliqV.png
#navbar5 {
float: left;
width: 35%;
}
<div id="navbar5">
<button> abc </button>
<button> def </button>
<div id="one"> xxxxxxx </div>
<div id="two"> yyyyyyy </div>
</div>