I have a fixed top navbar with dropdowns. I want to slide the dropdown menus in on hover. I want that the menu is behind the navbar while sliding in. So I've simply tried to set the z-index of both elements which unfortunately did not work for me.
Here a simplified example (codepen)
html
<div class="fixed-top">
  <span class="trigger">hover me</span>
  <div class="menu"></div>
</div>
css
.fixed-top {
  background: #3b5999;
  height: 50px;
  width: 100%;
  padding: 0;
  top: 0;
  position: fixed;
  z-index: 2;
}
.trigger {
  z-index: 2;
  font-size: 33px;
  color: white;
  margin-left: 50%;
}
.trigger:hover + .menu {
  margin-top: 0;
}
.menu {
  z-index: 1;
  height: 300px;
  background-color: #1c7754;
  width: 400px;
  margin: auto;
  margin-top: -400px;
  transition: all 0.75s ease-out;
}
In case it's not clear what I want to do here a simple mspaint sketch ;)

 
     
     
    