I am trying to change the height of the header while I'm hovering over a div in the header. The div is a dropdown button and the header is supposed to extend a specific amount of pixels to fit the drop down-content.
HTML:
<header>
    <nav class="menyer">
        <div class="dropdown">
            <button class="dropbtn">Dropdown</button>
                <div class="dropdown-content">
                    <a href="#">Link 1</a>
                    <a href="#">Link 2</a>
                    <a href="#">Link 3</a>
                 </div>
         </div>
     </nav>
 </header>
You can find all source code here
 
     
    