How to make sidebar appear in front of header?
.header {
z-index: -10;
margin: auto;
width: auto;
height: 70px;
background-color: black;
}
.sidebar {
position: relative;
z-index: 10;
margin: auto;
height: 1335px;
width: 65px;
background-color: red;
}
<div id="wrapper">
<header>
<div class="header"></div>
<div class="sidebar"></div>
</header>
</div>