I am facing an issue with two overlapping div elements. I need to remove the border from the area where they overlap only. Take a look at the code snippet below:
<div style="width:100px; height:20px; background-color:#5475b1;border: 2px solid;"></div>
<div style="width:150px; height:200px; background-color: #5475b1;border: 2px solid;"></div>
When rendered, this code will appear as shown in this image.
However, my desired output is illustrated in this image. How can I achieve this? Your assistance would be greatly appreciated.
Please note that I am currently working on a drop-down menu. The first div represents the menu name, while the second div serves as the menu list.