Hey there! I've got this snippet of HTML code that I'm working with:
<div class="template-page-wrapper">
<div class="templemo-content-wrapper">
<div class="templatemo-content">
<div class="templatemo-panels">
<div id="dPopupBG" class="popup_BG"></div>
<div style="height:100px;"><div>
<div id="MainContent" class="msg" style="display: none;">
<div class="error display" style="display:none"><span></span></div>
<div id="MainDocContent" class="flex">
(and Here page content having more html details)
</div>
</div>
</div>
</div>
</div>
I've noticed some extra space between the header line and the MainDocContent. When I inspect it, the below tag is highlighted:
<div style="height:100px;"><div>
I attempted to adjust the height using this CSS in my file, but it didn't work:
#dPopupBG+div{height:80px}
I'm determined to figure out a solution and learn from this experience.